Skip to content

Commit c2439a5

Browse files
authored
fix decoding version output in sql tests (#13304)
1 parent 57cc933 commit c2439a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/tests/sql/lib/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TestBase(TestLib):
2020
@classmethod
2121
def setup_class(cls):
2222
ydb_path = yatest.common.build_path(os.environ.get("YDB_DRIVER_BINARY", "ydb/apps/ydbd/ydbd"))
23-
logger.error(yatest.common.execute([ydb_path, "-V"], wait=True).stdout.decode("ascii"))
23+
logger.error(yatest.common.execute([ydb_path, "-V"], wait=True).stdout.decode("utf-8"))
2424

2525
cls.database = "/Root"
2626
cls.cluster = KiKiMR(KikimrConfigGenerator(erasure=cls.get_cluster_configuration()))

0 commit comments

Comments
 (0)