summaryrefslogtreecommitdiff
path: root/tests/test_auth.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2019-06-08 13:26:37 -0400
committerJeff Forcier <jeff@bitprophet.org>2019-06-08 13:26:37 -0400
commitdd7c91d57869360e3f34c6564e1b3beff65b3d39 (patch)
treeac5e2f31189be466748aebea8d2b3009481e6982 /tests/test_auth.py
parent17e412eb7c249a4cc536e70deebd3d889e07e252 (diff)
downloadparamiko-dd7c91d57869360e3f34c6564e1b3beff65b3d39.tar.gz
flake8 now applied to tests, huzzah
Diffstat (limited to 'tests/test_auth.py')
-rw-r--r--tests/test_auth.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_auth.py b/tests/test_auth.py
index fe1a32a1..0f8ffc54 100644
--- a/tests/test_auth.py
+++ b/tests/test_auth.py
@@ -250,7 +250,7 @@ class AuthTest(unittest.TestCase):
self.start_server()
self.tc.connect(hostkey=self.public_host_key)
try:
- remain = self.tc.auth_password("bad-server", "hello")
+ self.tc.auth_password("bad-server", "hello")
except:
etype, evalue, etb = sys.exc_info()
self.assertTrue(issubclass(etype, AuthenticationException))
@@ -265,7 +265,7 @@ class AuthTest(unittest.TestCase):
self.start_server()
self.tc.connect()
try:
- remain = self.tc.auth_password("unresponsive-server", "hello")
+ self.tc.auth_password("unresponsive-server", "hello")
except:
etype, evalue, etb = sys.exc_info()
self.assertTrue(issubclass(etype, AuthenticationException))