summaryrefslogtreecommitdiff
path: root/test/simple/test-child-process-double-pipe.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/simple/test-child-process-double-pipe.js')
-rw-r--r--test/simple/test-child-process-double-pipe.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/simple/test-child-process-double-pipe.js b/test/simple/test-child-process-double-pipe.js
index b0fc11d33f..a2253666e9 100644
--- a/test/simple/test-child-process-double-pipe.js
+++ b/test/simple/test-child-process-double-pipe.js
@@ -33,8 +33,9 @@ var grep = spawn('grep', ['o']),
echo;
if (is_windows) {
- echo = spawn('cmd.exe', ['/c', 'echo', 'hello&&', 'echo',
- 'node&&', 'echo', 'and&&', 'echo', 'world']);
+ echo = spawn('cmd.exe',
+ ['/c', 'echo', 'hello&&', 'echo',
+ 'node&&', 'echo', 'and&&', 'echo', 'world']);
} else {
echo = spawn('echo', ['hello\nnode\nand\nworld\n']);
}