summaryrefslogtreecommitdiff
path: root/tests/test_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_client.py')
-rw-r--r--tests/test_client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_client.py b/tests/test_client.py
index 3ff59b87..3dffa08e 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -62,7 +62,7 @@ class NullServer(paramiko.ServerInterface):
self.__allowed_keys = kwargs.pop("allowed_keys", [])
# And allow them to set a (single...meh) expected public blob (cert)
self.__expected_public_blob = kwargs.pop("public_blob", None)
- super(NullServer, self).__init__(*args, **kwargs)
+ super().__init__(*args, **kwargs)
def get_allowed_auths(self, username):
if username == "slowdive":