test: update test/parallel/test-child-process-stdio.js

Refs: nodejs/code-and-learn#56(comment)

Replace the equal assetion with strictEqual.
Replace the notEqual assertion with strictNotEqual.

PR-URL: https://github.com/nodejs/node/pull/8584
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Robert Jefe Lindstaedt <robert.lindstaedt@gmail.com>
pull/8717/merge
matzavinos 2016-09-19 17:18:23 +03:00 committed by James M Snell
parent 070efb57f7
commit 078bf68d94
1 changed files with 4 additions and 4 deletions

View File

@ -5,14 +5,14 @@ const assert = require('assert');
let options = {stdio: ['pipe']};
let child = common.spawnPwd(options);
assert.notEqual(child.stdout, null);
assert.notEqual(child.stderr, null);
assert.notStrictEqual(child.stdout, null);
assert.notStrictEqual(child.stderr, null);
options = {stdio: 'ignore'};
child = common.spawnPwd(options);
assert.equal(child.stdout, null);
assert.equal(child.stderr, null);
assert.strictEqual(child.stdout, null);
assert.strictEqual(child.stderr, null);
options = {stdio: 'ignore'};
child = common.spawnSyncCat(options);