Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Trott committed Oct 29, 2015
1 parent f24c29f commit b904c2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-child-process-send-returns-boolean.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const n = fork(emptyFile);
const rv = n.send({ hello: 'world' });
assert.strictEqual(rv, true);

const s = spawn(process.execPath, [emptyFile],
{ stdio: ['pipe', 'pipe', 'pipe', 'ipc'] });
const spawnOptions = { stdio: ['pipe', 'pipe', 'pipe', 'ipc'] };
const s = spawn(process.execPath, [emptyFile], spawnOptions);
var handle = null;
s.on('exit', function() {
handle.close();
Expand Down

0 comments on commit b904c2f

Please sign in to comment.