Skip to content

Commit

Permalink
How do folks keep putting friggin numbers in the tests?
Browse files Browse the repository at this point in the history
Well, pkey was probably my fault as the patch has sat around for ages
  • Loading branch information
bitprophet committed Dec 3, 2019
1 parent b133afa commit 592b712
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/test_gssapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,13 @@ def _gssapi_sspi_test(self):
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.
"""
Expand Down
4 changes: 2 additions & 2 deletions tests/test_pkey.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ def test_sign_ecdsa_521(self):
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"
)
Expand All @@ -452,7 +452,7 @@ def test_22_load_RSA_key_new_format(self):
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"
)
Expand Down

0 comments on commit 592b712

Please sign in to comment.