Skip to content

Commit 667b34c

Browse files
committed
test: fix failure to return promise in CSFLE prose test
1 parent c8d182e commit 667b34c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/functional/client_side_encryption/prose.test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ describe('Client Side Encryption Prose Tests', function() {
288288
algorithm: 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic'
289289
})
290290
)
291-
.then(encrypted => {
291+
.then(encrypted =>
292292
this.clientEncrypted
293293
.db(dataDbName)
294294
.collection(dataCollName)
@@ -300,8 +300,8 @@ describe('Client Side Encryption Prose Tests', function() {
300300
err => {
301301
expect(err).to.be.an.instanceOf(Error);
302302
}
303-
);
304-
});
303+
)
304+
);
305305
});
306306
});
307307

0 commit comments

Comments
 (0)