Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
1st1 committed May 23, 2018
1 parent f083090 commit 0e5db37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,11 +398,11 @@ def test_stdin_stdout_file(self):
args = self.PROGRAM_CAT

@asyncio.coroutine
def run(data, stderr):
def run(data, stdout):
proc = yield from asyncio.create_subprocess_exec(
*args,
stdin=subprocess.PIPE,
stderr=stdout,
stdout=stdout,
loop=self.loop)

# feed data
Expand Down

0 comments on commit 0e5db37

Please sign in to comment.