test: changed assert.equal to assert.strictEqual
PR-URL: https://github.com/nodejs/node/pull/10015 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
This commit is contained in:
parent
57f993d0f5
commit
e6a0c39bf7
@ -23,7 +23,7 @@ function parent() {
|
||||
n += c;
|
||||
});
|
||||
child.stdout.on('end', function() {
|
||||
assert.equal(+n, sent);
|
||||
assert.strictEqual(+n, sent);
|
||||
console.log('ok');
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user