diff options
Diffstat (limited to 'Lib/test/test_poll.py')
-rw-r--r-- | Lib/test/test_poll.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_poll.py b/Lib/test/test_poll.py index 028dd2d..d593495 100644 --- a/Lib/test/test_poll.py +++ b/Lib/test/test_poll.py @@ -207,7 +207,7 @@ class PollTests(unittest.TestCase): @unittest.skipUnless(threading, 'Threading required for this test.') @reap_threads def test_poll_blocks_with_negative_ms(self): - for timeout_ms in [None, -1, -1.0, -0.1, -1e-100]: + for timeout_ms in [None, -1000, -1, -1.0, -0.1, -1e-100]: # Create two file descriptors. This will be used to unlock # the blocking call to poll.poll inside the thread r, w = os.pipe() |