Skip to content

Commit

Permalink
test: changed assert.equal to assert.strictEqual
Browse files Browse the repository at this point in the history
PR-URL: #10015
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
zina-olson authored and MylesBorins committed Dec 20, 2016
1 parent b5c60ed commit 5049a10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-child-process-stdio-big-write-end.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function parent() {
n += c;
});
child.stdout.on('end', function() {
assert.equal(+n, sent);
assert.strictEqual(+n, sent);
console.log('ok');
});

Expand Down

0 comments on commit 5049a10

Please sign in to comment.