Skip to content

Commit f9cea02

Browse files
authored
tests: remove unused mix_stderr param (#549)
1 parent 2478087 commit f9cea02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/dogshell/test_dogshell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def run(args, stdin=None, check_return_code=True, use_cl_args=False):
7878
] + args
7979

8080
with capsys.disabled():
81-
result = runner.invoke(main, cmd, input=stdin, prog_name=cmd[0], mix_stderr=True)
81+
result = runner.invoke(main, cmd, input=stdin, prog_name=cmd[0])
8282
return_code = result.exit_code
8383
out = result.stdout_bytes
8484
err = result.stderr_bytes

0 commit comments

Comments
 (0)