From 1184f8f5b67af8e60e97b9251403033e615b5633 Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Tue, 13 Jul 2021 12:35:32 +0100 Subject: [PATCH] [misc] fix chai assertions .equal.false -> .equals(false) --- .../test/acceptance/js/DeletingADocumentTests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/document-updater/test/acceptance/js/DeletingADocumentTests.js b/services/document-updater/test/acceptance/js/DeletingADocumentTests.js index 5647c55d83..84c7300383 100644 --- a/services/document-updater/test/acceptance/js/DeletingADocumentTests.js +++ b/services/document-updater/test/acceptance/js/DeletingADocumentTests.js @@ -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,