Browse Source

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>
v6
Richard Karmazin 8 years ago
committed by cjihrig
parent
commit
38ed3fb14f
  1. 4
      test/parallel/test-cli-eval-event.js

4
test/parallel/test-cli-eval-event.js

@ -10,6 +10,6 @@ const child = spawn(process.execPath, ['-e', `
`]); `]);
child.once('exit', common.mustCall(function(exitCode, signalCode) { child.once('exit', common.mustCall(function(exitCode, signalCode) {
assert.equal(exitCode, 0); assert.strictEqual(exitCode, 0);
assert.equal(signalCode, null); assert.strictEqual(signalCode, null);
})); }));

Loading…
Cancel
Save