Skip to content

Commit 0068050

Browse files
committed
Drop explicit loop= argument from test_wakeup_fd_unchanged
1 parent 3e6a043 commit 0068050

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_signals.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,7 @@ async def f(): pass
302302
proc = await asyncio.create_subprocess_exec(
303303
sys.executable, b'-W', b'ignore', b'-c', PROG,
304304
stdout=subprocess.PIPE,
305-
stderr=subprocess.PIPE,
306-
loop=self.loop)
305+
stderr=subprocess.PIPE)
307306

308307
out, err = await proc.communicate()
309308
self.assertEqual(err, b'')

0 commit comments

Comments
 (0)