fix test to match behavior after 635c4985

This commit is contained in:
Martin Raifer
2022-11-08 19:28:30 +01:00
parent 635c498548
commit 8b2ca39521

View File

@@ -55,7 +55,7 @@ describe('iD.presetField', function() {
var uiField = iD.uiFieldCombo(field, context);
uiField.tags({k: 'v'});
expect(field.t).not.to.have.been.called;
expect(other.t).to.have.been.calledOnce;
expect(other.t).to.have.been.called;
});
});
});