Skip to content

Commit d87926a

Browse files
davidmarkclementsaddaleax
davidmarkclements
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 ea1c4e1 commit d87926a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-crypto-domain.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function test(fn) {
1313
var ex = new Error('BAM');
1414
var d = domain.create();
1515
d.on('error', common.mustCall(function(err) {
16-
assert.equal(err, ex);
16+
assert.strictEqual(err, ex);
1717
}));
1818
var cb = common.mustCall(function() {
1919
throw ex;

0 commit comments

Comments
 (0)