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.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_client.py b/tests/test_client.py
index 3dffa08e..dae5b13a 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -593,7 +593,7 @@ class SSHClientTest(ClientTest):
paramiko.SSHException,
self.tc.connect,
password="pygmalion",
- **self.connect_kwargs
+ **self.connect_kwargs,
)
@requires_gss_auth
@@ -614,7 +614,7 @@ class SSHClientTest(ClientTest):
self.tc.connect,
password="pygmalion",
gss_kex=True,
- **self.connect_kwargs
+ **self.connect_kwargs,
)
def _client_host_key_bad(self, host_key):
@@ -630,7 +630,7 @@ class SSHClientTest(ClientTest):
paramiko.BadHostKeyException,
self.tc.connect,
password="pygmalion",
- **self.connect_kwargs
+ **self.connect_kwargs,
)
def _client_host_key_good(self, ktype, kfile):