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 f44e828 commit b5c60edCopy full SHA for b5c60ed
1 file changed
test/parallel/test-crypto-authenticated.js
@@ -352,7 +352,7 @@ for (const i in TEST_CASES) {
352
var 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