Skip to content

Commit

Permalink
test: renamed assert.Equal to assert.strictEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
triscuitoraus authored and addaleax committed Dec 8, 2016
1 parent 9d037cf commit d7988e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-crypto-authenticated.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ for (const i in TEST_CASES) {
let msg = decrypt.update(test.ct, 'hex', outputEncoding);
if (!test.tampered) {
msg += decrypt.final(outputEncoding);
assert.equal(msg, test.plain);
assert.strictEqual(msg, test.plain);
} else {
// assert that final throws if input data could not be verified!
assert.throws(function() { decrypt.final('ascii'); }, / auth/);
Expand Down

0 comments on commit d7988e0

Please sign in to comment.