From 0d7af5ff885c50f35e754f826d9ff6c0a758067a Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Sun, 21 May 2023 23:31:18 +0300 Subject: [PATCH] Added/Updated tests\bugs\core_6185_test.py: added 'combine_output = True' in order to see problem details in the final HTML report --- tests/bugs/core_6185_test.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/bugs/core_6185_test.py b/tests/bugs/core_6185_test.py index 22caccf3..ce896eff 100644 --- a/tests/bugs/core_6185_test.py +++ b/tests/bugs/core_6185_test.py @@ -21,7 +21,12 @@ test_script = """ create or alter procedure sp_block_test(a_alg varchar(30)) as begin end; commit; - recreate table test( crypto_alg varchar(30), source_text blob, crypto_key varchar(128), crypto_iv varchar(16) ); + recreate table test( + crypto_alg varchar(30) + ,source_text blob + ,crypto_key varchar(128) + ,crypto_iv varchar(16) + ); commit; insert into test( crypto_alg, source_text, crypto_key, crypto_iv ) @@ -68,5 +73,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