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 <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
codeVana authored and evanlucas committed Jan 4, 2017
1 parent 3448e8e commit a815a23
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 @@ -48,8 +48,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 a815a23

Please sign in to comment.