diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-17 22:06:50 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-17 22:06:50 (GMT) |
commit | bdcc8f9d1b14837aa78b766a7a5e82f0625a1560 (patch) | |
tree | 035859691286b0d8fbb01a45fdcf90f6f3625467 /Lib | |
parent | bcfb35f80d9d1f87d9fa6993c1d3bc35dd5db865 (diff) | |
download | cpython-bdcc8f9d1b14837aa78b766a7a5e82f0625a1560.zip cpython-bdcc8f9d1b14837aa78b766a7a5e82f0625a1560.tar.gz cpython-bdcc8f9d1b14837aa78b766a7a5e82f0625a1560.tar.bz2 |
Issue #28176: Increase timeout for test_sock_connect_sock_write_race
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_asyncio/test_selector_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_selector_events.py b/Lib/test/test_asyncio/test_selector_events.py index 0c26a87..f6447cb 100644 --- a/Lib/test/test_asyncio/test_selector_events.py +++ b/Lib/test/test_asyncio/test_selector_events.py @@ -1804,7 +1804,7 @@ class SelectorLoopFunctionalTests(unittest.TestCase): return buf def test_sock_connect_sock_write_race(self): - TIMEOUT = 3.0 + TIMEOUT = 10.0 PAYLOAD = b'DATA' * 1024 * 1024 class Server(threading.Thread): |