fixed test

This commit is contained in:
Zhen Yu Yong 2020-06-25 20:19:13 +08:00 committed by Jordan Baczuk
parent 83e7e4582c
commit 5740ba895a
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ describe("ECIES", function() {
return eccrypto.encrypt(publicKeyA, Buffer.from("message size that is greater than 15 for sure =)")).then(function(enc) {
return eccrypto.decrypt(privateKeyA, enc);
}).then(function(msg) {
expect(msg.toString()).to.equal("to a");
expect(msg.toString()).to.equal("message size that is greater than 15 for sure =)");
});
});