From 80b92d106e8165afcbcf8246a08b9e7a117e73e7 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Mon, 14 Mar 2011 13:34:12 -0400 Subject: [PATCH] Attempt a larger timeout value to satisfy the buildbots. --- Lib/test/test_subprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index b64a044b7db..782d9f10859 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -128,7 +128,7 @@ class ProcessTestCase(BaseTestCase): "import sys; sys.stdout.write('BDFL')\n" "sys.stdout.flush()\n" "while True: pass"], - timeout=0.5) + timeout=1.5) self.fail("Expected TimeoutExpired.") self.assertEqual(c.exception.output, b'BDFL')