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
squash: hopeful fix for Windows
  • Loading branch information
Trott committed Mar 17, 2017
commit c2a2dc2a1c83f6d7bf877534eff1596c33bbf171
4 changes: 2 additions & 2 deletions test/parallel/test-cli-eval.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ child.exec(`${nodejs} --use-strict -p process.execArgv`,
// Make sure that monkey-patching process.execArgv doesn't cause child_process
// to incorrectly munge execArgv.
child.exec(
`${nodejs} -e 'process.execArgv = ["-e", "console.log(42)", "thirdArg"];
require("child_process").fork("${emptyFile}")'`,
`${nodejs} -e "process.execArgv = ['-e', 'console.log(42)', 'thirdArg'];
require('child_process').fork('${emptyFile}')"`,
common.mustCall((err, stdout, stderr) => {
assert.ifError(err);
assert.strictEqual(stdout, '42\n');
Expand Down