6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 13:33:07 +01:00

Added/Updated tests\bugs\gh_0731_test.py: ISQL must work with charset = utf8. Otherwise 'Expected end of statement, encountered EOF' will raise on Linux.

This commit is contained in:
pavel-zotov 2024-09-05 10:07:37 +03:00
parent fb31b6c739
commit 17d8f37104

View File

@ -9,6 +9,8 @@ NOTES:
[04.09.2024] pzotov
The issue seems to be fixed long ago.
Old FB versions can not be checked on current firebird QA.
ISQL must work with charset = utf8. Otherwise 'Expected end of statement, encountered EOF' will raise on Linux.
Checked on all recent 3.x ... 6.x -- all fine.
"""
@ -92,6 +94,6 @@ expected_stdout = """
@pytest.mark.version('>=3.0')
def test_1(act: Action):
act.expected_stdout = expected_stdout
act.execute(charset = 'win1252')
act.execute(charset = 'utf8')
assert act.clean_stdout == act.clean_expected_stdout