Skip to content

Commit fbb7f25

Browse files
fix flakiness of test_kill_issue43884
1 parent da5713c commit fbb7f25

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_asyncio/test_subprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def test_kill_issue43884(self):
220220
# kills the process and all its children.
221221
creationflags = CREATE_NEW_PROCESS_GROUP
222222
proc = self.loop.run_until_complete(
223-
asyncio.create_subprocess_shell(blocking_shell_command, stdout=asyncio.subprocess.PIPE,
223+
asyncio.create_subprocess_shell(blocking_shell_command,
224224
creationflags=creationflags)
225225
)
226226
self.loop.run_until_complete(asyncio.sleep(1))

0 commit comments

Comments
 (0)