Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup
  • Loading branch information
ronag committed Apr 6, 2020
commit 2feb611a78fd4cb53336e77c6ed4831c3a06f995
3 changes: 2 additions & 1 deletion test/parallel/test-stream-pipeline-process.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

const common = require('../common');
const assert = require('assert');
const os = require('os')

if (process.argv[2] === 'child') {
const { pipeline } = require('stream');
Expand All @@ -23,6 +24,6 @@ if (process.argv[2] === 'child') {
'child'
].join(' '), common.mustCall((err, stdout) => {
assert.ifError(err);
assert.strictEqual(stdout, 'hello');
assert.strictEqual(stdout.split(os.EOL).shift(), 'hello');
}));
}