Skip to content

Commit 0e5db37

Browse files
committed
Fix tests
1 parent f083090 commit 0e5db37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_process.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,11 +398,11 @@ def test_stdin_stdout_file(self):
398398
args = self.PROGRAM_CAT
399399

400400
@asyncio.coroutine
401-
def run(data, stderr):
401+
def run(data, stdout):
402402
proc = yield from asyncio.create_subprocess_exec(
403403
*args,
404404
stdin=subprocess.PIPE,
405-
stderr=stdout,
405+
stdout=stdout,
406406
loop=self.loop)
407407

408408
# feed data

0 commit comments

Comments
 (0)