diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2019-06-14 14:33:30 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2019-06-14 14:33:30 -0400 |
commit | 61e19a1da57e7d19959d26f71f895abd6cb0647c (patch) | |
tree | 77f0b3785115fa6306814a1daeb76091d8dfa152 /tests/test_client.py | |
parent | 1edc161c8280f8ce466552cca9d54d09d66b975d (diff) | |
parent | 1d33faa410a274be7d4ad26d4137c947c41ecdc4 (diff) |
Merge branch '2.0' into 2.1
Diffstat (limited to 'tests/test_client.py')
-rw-r--r-- | tests/test_client.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/test_client.py b/tests/test_client.py index fed38791..cb578394 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -284,15 +284,13 @@ class SSHClientTest(unittest.TestCase): os.close(fd) client = paramiko.SSHClient() - self.assertEquals(0, len(client.get_host_keys())) + assert len(client.get_host_keys()) == 0 host_id = "[%s]:%d" % (self.addr, self.port) client.get_host_keys().add(host_id, "ssh-rsa", public_host_key) - self.assertEquals(1, len(client.get_host_keys())) - self.assertEquals( - public_host_key, client.get_host_keys()[host_id]["ssh-rsa"] - ) + assert len(client.get_host_keys()) == 1 + assert public_host_key == client.get_host_keys()[host_id]["ssh-rsa"] client.save_host_keys(localname) @@ -343,7 +341,7 @@ class SSHClientTest(unittest.TestCase): with paramiko.SSHClient() as tc: self.tc = tc self.tc.set_missing_host_key_policy(paramiko.AutoAddPolicy()) - self.assertEquals(0, len(self.tc.get_host_keys())) + assert len(self.tc.get_host_keys()) == 0 self.tc.connect(**dict(self.connect_kwargs, password="pygmalion")) self.event.wait(1.0) |