Skip to content

Commit e82b452

Browse files
committed
test test-child-process-stdin.js: change assert.ok to assert.strictEqual
1 parent 44b38bb commit e82b452

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-child-process-stdin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ cat.stdin.write('hello');
99
cat.stdin.write(' ');
1010
cat.stdin.write('world');
1111

12-
assert.ok(cat.stdin.writable);
13-
assert.ok(!cat.stdin.readable);
12+
assert.strictEqual(cat.stdin.writable, true);
13+
assert.strictEqual(cat.stdin.readable, false);
1414

1515
cat.stdin.end();
1616

0 commit comments

Comments
 (0)