summaryrefslogtreecommitdiffhomepage
path: root/tests/test_kex_gss.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_kex_gss.py')
-rw-r--r--tests/test_kex_gss.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_kex_gss.py b/tests/test_kex_gss.py
index afddee08..42e0a101 100644
--- a/tests/test_kex_gss.py
+++ b/tests/test_kex_gss.py
@@ -35,7 +35,6 @@ from .util import needs_gssapi
class NullServer(paramiko.ServerInterface):
-
def get_allowed_auths(self, username):
return "gssapi-keyex"
@@ -61,7 +60,6 @@ class NullServer(paramiko.ServerInterface):
@needs_gssapi
class GSSKexTest(unittest.TestCase):
-
@staticmethod
def init(username, hostname):
global krb5_principal, targ_name
@@ -144,7 +142,7 @@ class GSSKexTest(unittest.TestCase):
stdout.close()
stderr.close()
- def test_1_gsskex_and_auth(self):
+ def test_gsskex_and_auth(self):
"""
Verify that Paramiko can handle SSHv2 GSS-API / SSPI authenticated
Diffie-Hellman Key Exchange and user authentication with the GSS-API
@@ -152,7 +150,7 @@ class GSSKexTest(unittest.TestCase):
"""
self._test_gsskex_and_auth(gss_host=None)
- def test_2_gsskex_and_auth_rekey(self):
+ def test_gsskex_and_auth_rekey(self):
"""
Verify that Paramiko can rekey.
"""