Skip to content

Commit

Permalink
test: refactor test-domain-multi
Browse files Browse the repository at this point in the history
Replace assert.equal() with assert.strictEqual().

PR-URL: #9963
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
  • Loading branch information
WesTyler authored and Fishrock123 committed Dec 6, 2016
1 parent a0f6cc7 commit 843b8c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/parallel/test-domain-multi.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ var server = http.createServer(function(req, res) {
});

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

0 comments on commit 843b8c1

Please sign in to comment.