From 6b257d0d85d21768d34cf723bfff0d72a3bc2043 Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Sat, 8 Dec 2012 00:02:36 -0500 Subject: [PATCH] Update test for UI tweaks --- test/spec/ui/inspector.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, {}); });