diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-10-10 15:40:32 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-10-10 15:40:32 -0700 |
commit | 2ffbd2f94c7c946d8f480191e086bc503cf2e1b7 (patch) | |
tree | d69fe561c093626336ec0af0bf4a746509059807 /tests | |
parent | 5fd5cfb0b176af6740f141abfb9291ef7a5d9618 (diff) |
This has been broken since it went in :( the test would never normally pass otherwise...
Diffstat (limited to 'tests')
-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 21b00b68..1068a8ad 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -589,7 +589,7 @@ class SSHClientTest (unittest.TestCase): self.assertTrue(isinstance(e.args[1], SSHException), 'Expected original SSHException in exception') else: - self.assertFalse(False, 'SSHException was not thrown.') + self.fail('SSHException was not thrown.') def test_missing_key_policy_accepts_classes_or_instances(self): |