Skip to content

Commit ee760fc

Browse files
committed
Rename test to test_pycrypto_sign_unencoded_cleartext
1 parent c15ed4e commit ee760fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/algorithms/test_RSA.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def test_pycrypto_RSA_key_instance():
235235
@pytest.mark.pycryptodome
236236
@pytest.mark.parametrize("private_key", PRIVATE_KEYS)
237237
@pytest.mark.skipif(None in (PyCryptoRSA, PyCryptoRSAKey), reason="Pycrypto/dome backend not available")
238-
def test_pycrypto_unencoded_cleartext(private_key):
238+
def test_pycrypto_sign_unencoded_cleartext(private_key):
239239
key = PyCryptoRSAKey(private_key, ALGORITHMS.RS256)
240240
msg = b'test'
241241
signature = key.sign(msg)

0 commit comments

Comments
 (0)