summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_streams.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_asyncio/test_streams.py')
-rw-r--r--Lib/test/test_asyncio/test_streams.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py
index 2e4f99f..01d565c 100644
--- a/Lib/test/test_asyncio/test_streams.py
+++ b/Lib/test/test_asyncio/test_streams.py
@@ -415,7 +415,7 @@ class StreamReaderTests(unittest.TestCase):
server = MyServer(self.loop)
server.start()
msg = self.loop.run_until_complete(asyncio.Task(client(),
- loop=self.loop))
+ loop=self.loop))
server.stop()
self.assertEqual(msg, b"hello world!\n")
@@ -423,7 +423,7 @@ class StreamReaderTests(unittest.TestCase):
server = MyServer(self.loop)
server.start_callback()
msg = self.loop.run_until_complete(asyncio.Task(client(),
- loop=self.loop))
+ loop=self.loop))
server.stop()
self.assertEqual(msg, b"hello world!\n")