summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-09-21 07:15:36 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-09-21 07:15:36 (GMT)
commit0256f4283987276796129b09905e71a7e3c590d3 (patch)
tree81510bfc467e98adf083c7afc72bc71881bc7399 /Lib
parent6d8bc46cc0ebe75d86d00a6ee7c452beea761c42 (diff)
downloadcpython-0256f4283987276796129b09905e71a7e3c590d3.zip
cpython-0256f4283987276796129b09905e71a7e3c590d3.tar.gz
cpython-0256f4283987276796129b09905e71a7e3c590d3.tar.bz2
test_asynico: fix test_sock_connect_sock_write_race()
Issue #28176: Increase timeout from 10 seconds to 60 seconds.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_asyncio/test_selector_events.py2
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 f6447cb..70df501 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):