summaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_gssapi.py4
-rw-r--r--tests/test_pkey.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_gssapi.py b/tests/test_gssapi.py
index 30ffb56d..308caa93 100644
--- a/tests/test_gssapi.py
+++ b/tests/test_gssapi.py
@@ -204,13 +204,13 @@ class GSSAPITest(KerberosTestCase):
c_token = token[0].Buffer
self.assertNotEquals(0, error)
- def test_2_gssapi_sspi_client(self):
+ def test_gssapi_sspi_client(self):
"""
Test the used methods of python-gssapi or sspi, sspicon from pywin32.
"""
self._gssapi_sspi_test()
- def test_3_gssapi_sspi_server(self):
+ def test_gssapi_sspi_server(self):
"""
Test the used methods of python-gssapi or sspi, sspicon from pywin32.
"""
diff --git a/tests/test_pkey.py b/tests/test_pkey.py
index 1ded7c4c..c949a676 100644
--- a/tests/test_pkey.py
+++ b/tests/test_pkey.py
@@ -441,7 +441,7 @@ class KeyTest(unittest.TestCase):
pub = ECDSAKey(data=key.asbytes())
self.assertTrue(pub.verify_ssh_sig(b"ice weasels", msg))
- def test_22_load_RSA_key_new_format(self):
+ def test_load_openssh_format_RSA_key(self):
key = RSAKey.from_private_key_file(
_support("test_rsa_openssh.key"), b"television"
)
@@ -452,7 +452,7 @@ class KeyTest(unittest.TestCase):
my_rsa = hexlify(key.get_fingerprint())
self.assertEqual(exp_rsa, my_rsa)
- def test_23_load_DSS_key_new_format(self):
+ def test_load_openssh_format_DSS_key(self):
key = DSSKey.from_private_key_file(
_support("test_dss_openssh.key"), b"television"
)