summaryrefslogtreecommitdiff
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.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py
index 60fe52fa4b..6325ee3983 100644
--- a/Lib/test/test_asyncio/test_streams.py
+++ b/Lib/test/test_asyncio/test_streams.py
@@ -855,9 +855,10 @@ os.close(fd)
watcher.attach_loop(self.loop)
try:
asyncio.set_child_watcher(watcher)
- create = asyncio.create_subprocess_exec(*args,
- pass_fds={wfd},
- loop=self.loop)
+ create = asyncio.create_subprocess_exec(
+ *args,
+ pass_fds={wfd},
+ )
proc = self.loop.run_until_complete(create)
self.loop.run_until_complete(proc.wait())
finally: