summaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-spawn-shell.js
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2016-12-30 10:09:13 -0500
committercjihrig <cjihrig@gmail.com>2017-01-06 14:08:47 -0500
commite5499b32cfcde144ee41500356d45d990cd9df0e (patch)
tree5241a5db3f80fee2d6a8e2b255f49157d5733d56 /test/parallel/test-child-process-spawn-shell.js
parent75ebd19d8dff5c65f94f7cf0a847b63d952ca864 (diff)
downloadnode-new-e5499b32cfcde144ee41500356d45d990cd9df0e.tar.gz
test: s/assert.notEqual()/assert.notStrictEqual()/
PR-URL: https://github.com/nodejs/node/pull/10541 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
Diffstat (limited to 'test/parallel/test-child-process-spawn-shell.js')
-rw-r--r--test/parallel/test-child-process-spawn-shell.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-child-process-spawn-shell.js b/test/parallel/test-child-process-spawn-shell.js
index 591fb409cb..01411144bd 100644
--- a/test/parallel/test-child-process-spawn-shell.js
+++ b/test/parallel/test-child-process-spawn-shell.js
@@ -6,7 +6,7 @@ const cp = require('child_process');
// Verify that a shell is, in fact, executed
const doesNotExist = cp.spawn('does-not-exist', {shell: true});
-assert.notEqual(doesNotExist.spawnfile, 'does-not-exist');
+assert.notStrictEqual(doesNotExist.spawnfile, 'does-not-exist');
doesNotExist.on('error', common.fail);
doesNotExist.on('exit', common.mustCall((code, signal) => {
assert.strictEqual(signal, null);