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
fixup: nit per mscdex/fishrock123
  • Loading branch information
Trott committed Mar 28, 2016
commit cfb494ea3d7cb79c5fb3c56f47f95601ad406917
5 changes: 2 additions & 3 deletions test/known_issues/test-stdout-buffer-flush-on-exit.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ if (process.argv[2] === 'child') {
process.exit();
}

const stdout = execSync(`${process.execPath} ${__filename} child`)
.toString()
.trim();
const cmd = `${process.execPath} ${__filename} child`;
const stdout = execSync(cmd).toString().trim();

assert.strictEqual(stdout, longLine);