Fix code test failure

This commit is contained in:
Quincy Morgan
2020-03-12 16:49:57 -07:00
parent 1e820b6980
commit bd7c1c757c

View File

@@ -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();
});