From b69249376650251f24e90f81656ded1d10e8cae0 Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Sun, 13 Jul 2014 23:15:52 +0400 Subject: [PATCH] test: fix regress-GH-1726 --- test/simple/test-regress-GH-1726.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/simple/test-regress-GH-1726.js b/test/simple/test-regress-GH-1726.js index aa5f76e716..f65e63d10b 100644 --- a/test/simple/test-regress-GH-1726.js +++ b/test/simple/test-regress-GH-1726.js @@ -38,7 +38,7 @@ if (gen === maxGen) { } var child = ch.spawn(process.execPath, [__filename, gen + 1], { - stdio: 'inherit' + stdio: [ 'ignore', 'pipe', 'ignore' ] }); assert.ok(!child.stdin); assert.ok(child.stdout);