Skip to content

Commit

Permalink
Style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
raszi committed Dec 25, 2017
1 parent da9fe6d commit ea2fc5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/child-process.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ function _doSpawn(commandArgs, cb) {
commandArgs[0], '--', commandArgs[1]
];
}

// spawn doesn’t have the quoting problems that exec does,
// especially when going for Windows portability.

child = spawn(node_path, commandArgs);
child.stdin.end();
// TODO:we no longer support node 0.6
// Cannot use 'close' event because not on node-0.6.

// TODO we no longer support node 0.6
// Cannot use 'close' event because not on node-0.6.
function _close() {
var
stderr = _bufferConcat(stderrBufs).toString(),
Expand Down

0 comments on commit ea2fc5d

Please sign in to comment.