From b17f7ce10cec167ef02f242499e234d4d8657b08 Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Fri, 2 Aug 2024 21:51:17 +0300 Subject: [PATCH] Added/Updated tests\bugs\gh_8194_test.py: minor change: added note about mandatory charset = utf8 --- tests/bugs/gh_8194_test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/bugs/gh_8194_test.py b/tests/bugs/gh_8194_test.py index 859bc37b..2d8081a0 100644 --- a/tests/bugs/gh_8194_test.py +++ b/tests/bugs/gh_8194_test.py @@ -78,6 +78,9 @@ def test_1(act: Action, capsys): db_cfg_object.protocol.value = NetProtocol.INET db_cfg_object.database.value = REQUIRED_ALIAS for i in range(LOOP_LIMIT): + # ::: NB ::: + # charset must be 'utf8' otherwise problem can not be reproduced! + # (see also note by the author of ticket in his starting message) with create_database(db_cfg_name, user = act.db.user, password = act.db.password, charset = 'utf8') as con: con.drop_database()