We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d037cf commit d7988e0Copy full SHA for d7988e0
1 file changed
test/parallel/test-crypto-authenticated.js
@@ -352,7 +352,7 @@ for (const i in TEST_CASES) {
352
let msg = decrypt.update(test.ct, 'hex', outputEncoding);
353
if (!test.tampered) {
354
msg += decrypt.final(outputEncoding);
355
- assert.equal(msg, test.plain);
+ assert.strictEqual(msg, test.plain);
356
} else {
357
// assert that final throws if input data could not be verified!
358
assert.throws(function() { decrypt.final('ascii'); }, / auth/);
0 commit comments