Skip to content

Commit d7988e0

Browse files
triscuitorausaddaleax
authored andcommitted
test: renamed assert.Equal to assert.strictEqual
1 parent 9d037cf commit d7988e0

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
letmsg=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)