diff options
| author | Reid Kleckner <reid@kleckner.net> | 2011-03-14 17:34:12 (GMT) |
|---|---|---|
| committer | Reid Kleckner <reid@kleckner.net> | 2011-03-14 17:34:12 (GMT) |
| commit | 80b92d106e8165afcbcf8246a08b9e7a117e73e7 (patch) | |
| tree | 2e67050fc1970c9020ab5203c71f04a612b1f720 /Lib/test/test_subprocess.py | |
| parent | 1c711f0ef9621cee1b898f0d07d06377921c79e6 (diff) | |
| download | cpython-80b92d106e8165afcbcf8246a08b9e7a117e73e7.zip cpython-80b92d106e8165afcbcf8246a08b9e7a117e73e7.tar.gz cpython-80b92d106e8165afcbcf8246a08b9e7a117e73e7.tar.bz2 | |
Attempt a larger timeout value to satisfy the buildbots.
Diffstat (limited to 'Lib/test/test_subprocess.py')
| -rw-r--r-- | Lib/test/test_subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index b64a044..782d9f1 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') |
