Skip to content

Commit 5049a10

Browse files
zina-olsonMylesBorins
authored andcommitted
test: changed assert.equal to assert.strictEqual
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>
1 parent b5c60ed commit 5049a10

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

Lines changed: 1 addition & 1 deletion
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)