From 01dd31eec2e55d4830d6e9006d29321c0be2bd0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Thu, 20 Feb 2020 13:08:55 +0100 Subject: [PATCH] proxy_test: Remove the deprecated encoding argument. --- tests/proxy_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/proxy_test.py b/tests/proxy_test.py index 050fe46..b50379e 100644 --- a/tests/proxy_test.py +++ b/tests/proxy_test.py @@ -19,7 +19,7 @@ class TestClass(object): @staticmethod def _load_response(filename): with open(filename) as f: - return json.loads(f.read(), encoding="utf-8") + return json.loads(f.read()) @property def login_response(self):