diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-03-05 10:36:41 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-03-05 10:36:41 -0500 |
commit | b94f92c4568c7fe00734c406cc79542662216b49 (patch) | |
tree | 6dac6aa74fa3db88597cf42073b29c51de5e9464 | |
parent | b5ca8fe7377856b5a0fa434f30bd6d9d6289b741 (diff) | |
download | cryptography-b94f92c4568c7fe00734c406cc79542662216b49.tar.gz cryptography-b94f92c4568c7fe00734c406cc79542662216b49.tar.bz2 cryptography-b94f92c4568c7fe00734c406cc79542662216b49.zip |
make the test function name make sense
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index f02af3e7..c3a79db5 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -1267,7 +1267,7 @@ class TestRSADecryption(object): ), skip_message="Does not support OAEP." ) - def test_invalid_oaep_decryption_modulus_too_large(self, backend): + def test_invalid_oaep_decryption_data_to_large_for_modulus(self, backend): key = RSA_KEY_2048_ALT.private_key(backend) ciphertext = ( |