Skip to content

Commit

Permalink
test: improve domain-top-level-error-handler-throw
Browse files Browse the repository at this point in the history
Use assert.strictEqual instead of assert.equal.

PR-URL: #9950
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Rich Trott <[email protected]>
  • Loading branch information
codeVana authored and targos committed Dec 26, 2016
1 parent d3edaa3 commit 4022579
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-domain-top-level-error-handler-throw.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ if (process.argv[2] === 'child') {
var expectedExitCode = 7;
var expectedSignal = null;

assert.equal(exitCode, expectedExitCode);
assert.equal(signal, expectedSignal);
assert.strictEqual(exitCode, expectedExitCode);
assert.strictEqual(signal, expectedSignal);
});
}
}

0 comments on commit 4022579

Please sign in to comment.