Skip to content

Commit c3a3480

Browse files
WesTylerMylesBorins
authored andcommitted
test: refactor test-domain-multi
Replace assert.equal() with assert.strictEqual(). PR-URL: #9963 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Evan Lucas <[email protected]>
1 parent ad27555 commit c3a3480

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/parallel/test-domain-multi.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ var server = http.createServer(function(req, res) {
7070
});
7171

7272
process.on('exit', function() {
73-
assert.equal(caughtA, false);
74-
assert.equal(caughtB, true);
75-
assert.equal(caughtC, true);
73+
assert.strictEqual(caughtA, false);
74+
assert.strictEqual(caughtB, true);
75+
assert.strictEqual(caughtC, true);
7676
console.log('ok - Errors went where they were supposed to go');
7777
});

0 commit comments

Comments
 (0)