summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-10-09 16:16:26 (GMT)
committerYury Selivanov <yury@magic.io>2016-10-09 16:16:26 (GMT)
commitcfa6b72a47466daf144a58a42e5d905d351aab12 (patch)
tree33513f2e400ca0e00b2b02f535a3da87938aeaff /Lib/test
parentf3fc3b06c432644fefa6fef84c1dfcd33dc283e7 (diff)
parent88e8aca78d71fa917a057e8d60b24f4a364d3248 (diff)
downloadcpython-cfa6b72a47466daf144a58a42e5d905d351aab12.zip
cpython-cfa6b72a47466daf144a58a42e5d905d351aab12.tar.gz
cpython-cfa6b72a47466daf144a58a42e5d905d351aab12.tar.bz2
Merge 3.6 (issue #28399)
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_asyncio/test_unix_events.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py
index 0d54e3a..ce897ed 100644
--- a/Lib/test/test_asyncio/test_unix_events.py
+++ b/Lib/test/test_asyncio/test_unix_events.py
@@ -241,11 +241,13 @@ class SelectorEventLoopUnixSocketTests(test_utils.TestCase):
with test_utils.unix_socket_path() as path:
sock = socket.socket(socket.AF_UNIX)
sock.bind(path)
- with sock:
- coro = self.loop.create_unix_server(lambda: None, path)
- with self.assertRaisesRegex(OSError,
- 'Address.*is already in use'):
- self.loop.run_until_complete(coro)
+ sock.listen(1)
+ sock.close()
+
+ coro = self.loop.create_unix_server(lambda: None, path)
+ srv = self.loop.run_until_complete(coro)
+ srv.close()
+ self.loop.run_until_complete(srv.wait_closed())
def test_create_unix_server_existing_path_nonsock(self):
with tempfile.NamedTemporaryFile() as file: