Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Using assert.strictEqual instead of equal
  • Loading branch information
codeVana authored and Trott committed Dec 21, 2016
commit 93b8c09328b2fa87a1f6ace7e896befc85e13d39
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);
});
}
}