diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2019-12-03 15:52:28 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2019-12-03 15:52:28 -0500 |
commit | 592b712174077f7f39ad81a47f6c02d779db4c98 (patch) | |
tree | 20ae1ac824c7f94bd21b7e4b0d08581d51c0fe7e | |
parent | b133afaecffe5e2cc3bbc78d8a7e2cdcf40f0191 (diff) |
How do folks keep putting friggin numbers in the tests?
Well, pkey was probably my fault as the patch has sat around for ages
-rw-r--r-- | tests/test_gssapi.py | 4 | ||||
-rw-r--r-- | tests/test_pkey.py | 4 |
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" ) |