From f9cea02953a23167d6fd3f16ed3cf4b8285f0518 Mon Sep 17 00:00:00 2001 From: Jiri Kuncar Date: Tue, 10 Mar 2020 17:26:57 +0000 Subject: [PATCH] tests: remove unused mix_stderr param (#549) --- tests/integration/dogshell/test_dogshell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/dogshell/test_dogshell.py b/tests/integration/dogshell/test_dogshell.py index 1d80c4453..fa8bcfa4d 100644 --- a/tests/integration/dogshell/test_dogshell.py +++ b/tests/integration/dogshell/test_dogshell.py @@ -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