summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-09-25 03:30:03 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2014-09-25 03:30:03 (GMT)
commitd1223a7adc883af09d166a269e535bdb7d02b2e3 (patch)
treef3fba3349f1e5e750743cd7d8916b91c1258c08a /Lib
parent5d0a790fc8fcbdfa095950db5f05df01cef7d877 (diff)
downloadcpython-d1223a7adc883af09d166a269e535bdb7d02b2e3.zip
cpython-d1223a7adc883af09d166a269e535bdb7d02b2e3.tar.gz
cpython-d1223a7adc883af09d166a269e535bdb7d02b2e3.tar.bz2
asyncio.test_events: Partially reverting f7643c893587 to stay in sync with tulip codebase
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_asyncio/test_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
index 258fdcb..7ac845a 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -448,7 +448,7 @@ class EventLoopTestsMixin:
listener = socket.socket()
listener.setblocking(False)
listener.bind(('127.0.0.1', 0))
- listener.listen()
+ listener.listen(1)
client = socket.socket()
client.connect(listener.getsockname())