Skip to content

Commit

Permalink
Using assert.strictEqual instead of equal
Browse files Browse the repository at this point in the history
  • Loading branch information
codeVana authored and Trott committed Dec 21, 2016
1 parent fde5042 commit 93b8c09
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 93b8c09

Please sign in to comment.