diff --git a/services/contacts/test/unit/js/ContactsManagerTests.js b/services/contacts/test/unit/js/ContactsManagerTests.js index 5fe8286a88..e775cb04fc 100644 --- a/services/contacts/test/unit/js/ContactsManagerTests.js +++ b/services/contacts/test/unit/js/ContactsManagerTests.js @@ -92,7 +92,7 @@ describe('ContactManager', function() { }) return it('should call the callback with an error', function() { - return this.callback.calledWith(new Error()).should.equal(true) + return this.callback.calledWith(sinon.match(Error)).should.equal(true) }) }) }) @@ -136,7 +136,7 @@ describe('ContactManager', function() { }) return it('should call the callback with an error', function() { - return this.callback.calledWith(new Error()).should.equal(true) + return this.callback.calledWith(sinon.match(Error)).should.equal(true) }) }) })