summaryrefslogtreecommitdiffhomepage
path: root/tests/test_client.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2018-08-22 14:24:42 -0700
committerJeff Forcier <jeff@bitprophet.org>2018-08-22 14:24:42 -0700
commit57201d2de9cd4080480cfed2fe2572fa1c908acb (patch)
treee16850c4aee5ff8be4dc9bdbb992ad3c44dfcdaa /tests/test_client.py
parent60a89316aa817fb3ac03b7bf17572a69e928f6a0 (diff)
Bump black up to 18.6b4
Diffstat (limited to 'tests/test_client.py')
-rw-r--r--tests/test_client.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_client.py b/tests/test_client.py
index 4943df29..80b28adf 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -56,7 +56,6 @@ FINGERPRINTS = {
class NullServer(paramiko.ServerInterface):
-
def __init__(self, *args, **kwargs):
# Allow tests to enable/disable specific key types
self.__allowed_keys = kwargs.pop("allowed_keys", [])
@@ -115,7 +114,6 @@ class NullServer(paramiko.ServerInterface):
class ClientTest(unittest.TestCase):
-
def setUp(self):
self.sockl = socket.socket()
self.sockl.bind(("localhost", 0))
@@ -230,7 +228,6 @@ class ClientTest(unittest.TestCase):
class SSHClientTest(ClientTest):
-
def test_1_client(self):
"""
verify that the SSHClient stuff works too.