test: use strictEqual in test-cli-eval-event.js
PR-URL: https://github.com/nodejs/node/pull/9964 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
parent
52545bbb11
commit
38ed3fb14f
@ -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);
|
||||
}));
|
||||
|
Loading…
x
Reference in New Issue
Block a user