From bd7c1c757c7a43af35b32c4ccfcca070a39a49cc Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Thu, 12 Mar 2020 16:49:57 -0700 Subject: [PATCH] Fix code test failure --- test/spec/ui/sections/raw_tag_editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); });