From bb2af7dd4dc7d6fe41e2fbffe4c7ddccba087a5b Mon Sep 17 00:00:00 2001 From: Alexis Campailla Date: Tue, 14 Jan 2014 01:32:07 -0800 Subject: [PATCH] test: give repl-timeout-throw more time to run Short timeout was causing the test to fail on Windows debug builds. --- test/simple/test-repl-timeout-throw.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/simple/test-repl-timeout-throw.js b/test/simple/test-repl-timeout-throw.js index f70e888712..28f370909b 100644 --- a/test/simple/test-repl-timeout-throw.js +++ b/test/simple/test-repl-timeout-throw.js @@ -65,7 +65,7 @@ child.stdout.once('data', function() { ' });\n' + '});"";\n'); - setTimeout(child.stdin.end.bind(child.stdin), 50); + setTimeout(child.stdin.end.bind(child.stdin), 200); } });