Skip to content

Commit 67b11a4

Browse files
davidmarkclementsaddaleax
authored andcommitted
test: assert.equal -> assert.strictEqual
changes assert.equal to assert.strictEqual to ensure specificity PR-URL: #10067 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent bb950a6 commit 67b11a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎test/parallel/test-crypto-domain.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function test(fn){
1313
varex=newError('BAM');
1414
vard=domain.create();
1515
d.on('error',common.mustCall(function(err){
16-
assert.equal(err,ex);
16+
assert.strictEqual(err,ex);
1717
}));
1818
varcb=common.mustCall(function(){
1919
throwex;

0 commit comments

Comments
(0)