diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-03-13 11:19:04 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-03-13 11:19:04 -0700 |
commit | ba55eea38df24b2b5f161874947637b48613f6ca (patch) | |
tree | 9197d29d310c266a089b1a27459b998e86dac392 /tests/test_client.py | |
parent | 120071283d5490f1f942be764c1284b93cddcf0c (diff) | |
parent | 386384a498dab4bd128433f77f0839cee86d288b (diff) |
Merge remote-tracking branch 'scottkmaxwell/python3-with-import-fix' into python3
Diffstat (limited to 'tests/test_client.py')
-rw-r--r-- | tests/test_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_client.py b/tests/test_client.py index af292c32..7e5c80b4 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -158,7 +158,7 @@ class SSHClientTest (unittest.TestCase): self.tc = paramiko.SSHClient() self.tc.get_host_keys().add('[%s]:%d' % (self.addr, self.port), 'ssh-rsa', public_host_key) - self.tc.connect(self.addr, self.port, username='slowdive', key_filename=[ test_path('test_rsa.key'), test_path('test_dss.key') ]) + self.tc.connect(self.addr, self.port, username='slowdive', key_filename=[test_path('test_rsa.key'), test_path('test_dss.key')]) self.event.wait(1.0) self.assertTrue(self.event.isSet()) |