diff --git a/tests/bugs/core_3092_test.py b/tests/bugs/core_3092_test.py index 12befd39..fbbacd81 100644 --- a/tests/bugs/core_3092_test.py +++ b/tests/bugs/core_3092_test.py @@ -7,6 +7,9 @@ TITLE: ROW_COUNT is not cleared before the singleton INSERT statement DESCRIPTION: JIRA: CORE-3092 FBTEST: bugs.core_3092 +NOTES: + [25.11.2023] pzotov + Writing code requires more care since 6.0.0.150: ISQL does not allow specifying duplicate delimiters without any statements between them (two semicolon, two carets etc). """ import pytest @@ -48,7 +51,7 @@ init_script = """ result = result||'insert-1 '||row_count||'; '; end ^ - SET TERM ^; + SET TERM ;^ COMMIT; """ @@ -68,6 +71,6 @@ expected_stdout = """ @pytest.mark.version('>=2.1.5') 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