Skip to content

Commit

Permalink
test: use strictEqual in test-cli-eval-event.js
Browse files Browse the repository at this point in the history
PR-URL: nodejs#9964
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
Richard Karmazin authored and addaleax committed Dec 8, 2016
1 parent 404306f commit 7277c37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-cli-eval-event.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ const child = spawn(process.execPath, ['-e', `
`]);

child.once('exit', common.mustCall(function(exitCode, signalCode) {
assert.equal(exitCode, 0);
assert.equal(signalCode, null);
assert.strictEqual(exitCode, 0);
assert.strictEqual(signalCode, null);
}));

0 comments on commit 7277c37

Please sign in to comment.