Kaydet (Commit) eaeb623a authored tarafından Victor Stinner's avatar Victor Stinner

Issue #20682: Oops, fix test_create_connection() of test_asyncio (fix my previous commit)

üst df90ae69
......@@ -509,7 +509,7 @@ class EventLoopTestsMixin:
self.loop.run_forever()
self.assertEqual(caught, 1)
def _basetest_create_connection(self, connection_fut, check_sockname):
def _basetest_create_connection(self, connection_fut, check_sockname=True):
tr, pr = self.loop.run_until_complete(connection_fut)
self.assertIsInstance(tr, asyncio.Transport)
self.assertIsInstance(pr, asyncio.Protocol)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment