diff --git a/tests/integration/helpers/cluster.py b/tests/integration/helpers/cluster.py index 9b63a21529f..390362cfceb 100644 --- a/tests/integration/helpers/cluster.py +++ b/tests/integration/helpers/cluster.py @@ -3697,6 +3697,8 @@ class ClickHouseInstance: method = "POST" if data else "GET" r = requester.request(method, url, data=data, auth=auth, timeout=timeout) + # Force encoding to UTF-8 + r.encoding = "UTF-8" if r.ok: return (r.content if content else r.text, None)