Skip to content

Commit

Permalink
tests: remove unused mix_stderr param (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
jirikuncar authored Mar 10, 2020
1 parent 2478087 commit f9cea02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/dogshell/test_dogshell.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def run(args, stdin=None, check_return_code=True, use_cl_args=False):
] + args

with capsys.disabled():
result = runner.invoke(main, cmd, input=stdin, prog_name=cmd[0], mix_stderr=True)
result = runner.invoke(main, cmd, input=stdin, prog_name=cmd[0])
return_code = result.exit_code
out = result.stdout_bytes
err = result.stderr_bytes
Expand Down

0 comments on commit f9cea02

Please sign in to comment.