Skip to content

Commit

Permalink
test: refactor equality assertions
Browse files Browse the repository at this point in the history
issue: nodejs/code-and-learn#56(comment)

modified file: test/parallel/test-child-process-stdio.js

Replace the equal assetion with strictEqual.
Replace the notEqual assertion with strictNotEqual.
  • Loading branch information
matzavinos committed Sep 19, 2016
1 parent f8f92e4 commit 44e1231
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/parallel/test-child-process-stdio.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 44e1231

Please sign in to comment.