]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
test_asynico: fix test_sock_connect_sock_write_race()
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 21 Sep 2016 07:15:36 +0000 (09:15 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 21 Sep 2016 07:15:36 +0000 (09:15 +0200)
Issue #28176: Increase timeout from 10 seconds to 60 seconds.

Lib/test/test_asyncio/test_selector_events.py

index f6447cb8727cbf5130fe006215938bf6cbc951be..70df501e82c8262caac54fbce7083142f8a64a6d 100644 (file)
@@ -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):