[Python-checkins] cpython (3.5): Issue #28176: Increase timeout for test_sock_connect_sock_write_race
berker.peksag
python-checkins at python.org
Sat Sep 17 18:06:44 EDT 2016
https://hg.python.org/cpython/rev/8417873f2eac
changeset: 103897:8417873f2eac
branch: 3.5
parent: 103890:78efbf499611
user: Berker Peksag <berker.peksag at gmail.com>
date: Sun Sep 18 01:06:50 2016 +0300
summary:
Issue #28176: Increase timeout for test_sock_connect_sock_write_race
files:
Lib/test/test_asyncio/test_selector_events.py | 2 +-
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
--- a/Lib/test/test_asyncio/test_selector_events.py
+++ b/Lib/test/test_asyncio/test_selector_events.py
@@ -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):
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list