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:
vazina robertson 2016-12-01 11:22:42 -06:00 committed by Anna Henningsen
parent 57f993d0f5
commit e6a0c39bf7
No known key found for this signature in database
GPG Key ID: D8B9F5AEAE84E4CF

View File

@ -23,7 +23,7 @@ function parent() {
n += c;
});
child.stdout.on('end', function() {
assert.equal(+n, sent);
assert.strictEqual(+n, sent);
console.log('ok');
});