changeset: 103897:8417873f2eac branch: 3.5 parent: 103890:78efbf499611 user: Berker Peksag date: Sun Sep 18 01:06:50 2016 +0300 files: Lib/test/test_asyncio/test_selector_events.py description: Issue #28176: Increase timeout for test_sock_connect_sock_write_race diff -r 78efbf499611 -r 8417873f2eac Lib/test/test_asyncio/test_selector_events.py --- a/Lib/test/test_asyncio/test_selector_events.py Sat Sep 17 23:22:06 2016 +0300 +++ b/Lib/test/test_asyncio/test_selector_events.py Sun Sep 18 01:06:50 2016 +0300 @@ -1804,7 +1804,7 @@ 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):