From 407bead382d718e612c2e46a01957e73d148179a Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Mon, 9 Oct 2023 12:04:08 +0300 Subject: [PATCH] Added/Updated tests\bugs\core_5871_test.py: added 'combine_output = True' to show the result when the test fails --- tests/bugs/core_5871_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bugs/core_5871_test.py b/tests/bugs/core_5871_test.py index e3e53521..04cdb543 100644 --- a/tests/bugs/core_5871_test.py +++ b/tests/bugs/core_5871_test.py @@ -128,5 +128,5 @@ expected_stdout = """ @pytest.mark.version('>=4.0') def test_1(act: Action): act.expected_stdout = expected_stdout - act.execute() + act.execute(combine_output = True) assert act.clean_stdout == act.clean_expected_stdout