diff --git a/test/spec/ui/inspector.js b/test/spec/ui/inspector.js index 4de1a5bbc..6623bbef5 100644 --- a/test/spec/ui/inspector.js +++ b/test/spec/ui/inspector.js @@ -23,11 +23,11 @@ describe("Inspector", function () { expect(spy).to.have.been.calledWith(entity); }); - it("emits a changeTags event when the save button is clicked", function () { + it("emits a changeTags event when the apply button is clicked", function () { var spy = sinon.spy(); inspector.on('changeTags', spy); - happen.click(element.select('.save').node()); + happen.click(element.select('.apply').node()); expect(spy).to.have.been.calledWith(entity, {}); });