diff --git a/test/spec/ui/sections/raw_tag_editor.js b/test/spec/ui/sections/raw_tag_editor.js index d45b16efb..739d72849 100644 --- a/test/spec/ui/sections/raw_tag_editor.js +++ b/test/spec/ui/sections/raw_tag_editor.js @@ -49,7 +49,7 @@ describe('iD.uiSectionRawTagEditor', function() { }); it('removes tags when clicking the remove button', function (done) { - taglist.on('change', function(tags) { + taglist.on('change', function(entityIDs, tags) { expect(tags).to.eql({highway: undefined}); done(); });