From a9d3486975d48e1603e76b8e5223e93ec4433004 Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Mon, 9 Oct 2023 11:57:20 +0300 Subject: [PATCH] Added/Updated tests\bugs\core_4484_test.py: added 'combine_output = True' to show the result when the test fails --- tests/bugs/core_4484_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bugs/core_4484_test.py b/tests/bugs/core_4484_test.py index 00c7aab8..0507c0b6 100644 --- a/tests/bugs/core_4484_test.py +++ b/tests/bugs/core_4484_test.py @@ -136,6 +136,6 @@ expected_stdout = """ @pytest.mark.version('>=3.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