[misc] fix chai assertions .equal.false -> .equals(false)

This commit is contained in:
Jakob Ackermann 2021-07-13 12:35:32 +01:00
parent 40aafa27e0
commit 1184f8f5b6

View file

@ -103,7 +103,7 @@ describe('Deleting a document', function () {
})
it('should need to reload the doc if read again', function (done) {
MockWebApi.getDocument.called.should.equal.false
MockWebApi.getDocument.called.should.equals(false)
return DocUpdaterClient.getDoc(
this.project_id,
this.doc_id,
@ -164,7 +164,7 @@ describe('Deleting a document', function () {
})
it('should need to reload the doc if read again', function (done) {
MockWebApi.getDocument.called.should.equal.false
MockWebApi.getDocument.called.should.equals(false)
return DocUpdaterClient.getDoc(
this.project_id,
this.doc_id,