Skip to content

Commit cfe7395

Browse files
committed
test: deflake child-process-pipe-dataflow
Fixes: #25988
1 parent f7668fa commit cfe7395

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-child-process-pipe-dataflow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const MB = KB * KB;
2727
// So cut the buffer into lines at some points, forcing
2828
// data flow to be split in the stream.
2929
for (let i = 1; i < KB; i++)
30-
buf.write(os.EOL, i * KB);
30+
buf.write('\n', i * KB);
3131
fs.writeFileSync(file, buf.toString());
3232

3333
cat = spawn('cat', [file]);

0 commit comments

Comments
 (0)