Skip to content

Commit

Permalink
test: fix failure to return promise in CSFLE prose test
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Jan 17, 2020
1 parent c8d182e commit 667b34c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/functional/client_side_encryption/prose.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ describe('Client Side Encryption Prose Tests', function() {
algorithm: 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic'
})
)
.then(encrypted => {
.then(encrypted =>
this.clientEncrypted
.db(dataDbName)
.collection(dataCollName)
Expand All @@ -300,8 +300,8 @@ describe('Client Side Encryption Prose Tests', function() {
err => {
expect(err).to.be.an.instanceOf(Error);
}
);
});
)
);
});
});

Expand Down

0 comments on commit 667b34c

Please sign in to comment.