mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix an encoding issue in the query tool. Fixes #3711
This commit is contained in:
committed by
Dave Page
parent
6428ffcdaf
commit
7e3bd8b88a
@@ -51,6 +51,21 @@ class TestEncodingCharset(BaseTestGenerator):
|
||||
lc_collate='C',
|
||||
test_str='\\255'
|
||||
)),
|
||||
(
|
||||
'With Encoding LATIN1',
|
||||
dict(
|
||||
db_encoding='LATIN1',
|
||||
lc_collate='C',
|
||||
test_str='Ň'
|
||||
)),
|
||||
(
|
||||
'With Encoding LATIN2',
|
||||
dict(
|
||||
db_encoding='LATIN2',
|
||||
lc_collate='C',
|
||||
test_str='§'
|
||||
)),
|
||||
|
||||
]
|
||||
|
||||
def setUp(self):
|
||||
|
||||
Reference in New Issue
Block a user