Skip to content

Commit b5c60ed

Browse files
triscuitorausMylesBorins
authored andcommitted
test: renamed assert.Equal to assert.strictEqual
1 parent f44e828 commit b5c60ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-crypto-authenticated.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ for (const i in TEST_CASES) {
352352
var msg = decrypt.update(test.ct, 'hex', outputEncoding);
353353
if (!test.tampered) {
354354
msg += decrypt.final(outputEncoding);
355-
assert.equal(msg, test.plain);
355+
assert.strictEqual(msg, test.plain);
356356
} else {
357357
// assert that final throws if input data could not be verified!
358358
assert.throws(function() { decrypt.final('ascii'); }, / auth/);

0 commit comments

Comments
 (0)