mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
[misc] fix chai assertions .equal.false -> .equals(false)
This commit is contained in:
parent
40aafa27e0
commit
1184f8f5b6
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue