proxy_test: Remove the deprecated encoding argument.

This commit is contained in:
Damir Jelić 2020-02-20 13:08:55 +01:00
parent 45b823eac6
commit 01dd31eec2

View File

@ -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):