Skip to content

Commit dac757e

Browse files
zina-olsonaddaleax
authored andcommitted
test: changed assert.equal to assert.strictEqual
PR-URL: #10015 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent d7988e0 commit dac757e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-child-process-stdio-big-write-end.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function parent() {
2323
n += c;
2424
});
2525
child.stdout.on('end', function() {
26-
assert.equal(+n, sent);
26+
assert.strictEqual(+n, sent);
2727
console.log('ok');
2828
});
2929

0 commit comments

Comments
 (0)