From bdcc8f9d1b14837aa78b766a7a5e82f0625a1560 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sun, 18 Sep 2016 01:06:50 +0300 Subject: [PATCH] Issue #28176: Increase timeout for test_sock_connect_sock_write_race --- Lib/test/test_asyncio/test_selector_events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_asyncio/test_selector_events.py b/Lib/test/test_asyncio/test_selector_events.py index 0c26a87dcdf..f6447cb8727 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):