From: Victor Stinner Date: Wed, 21 Sep 2016 07:15:36 +0000 (+0200) Subject: test_asynico: fix test_sock_connect_sock_write_race() X-Git-Tag: v3.6.0b2~150^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0256f4283987276796129b09905e71a7e3c590d3;p=thirdparty%2FPython%2Fcpython.git test_asynico: fix test_sock_connect_sock_write_race() Issue #28176: Increase timeout from 10 seconds to 60 seconds. --- diff --git a/Lib/test/test_asyncio/test_selector_events.py b/Lib/test/test_asyncio/test_selector_events.py index f6447cb8727c..70df501e82c8 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 = 10.0 + TIMEOUT = 60.0 PAYLOAD = b'DATA' * 1024 * 1024 class Server(threading.Thread):