diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2019-02-02 23:23:52 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2019-02-02 20:23:52 -0800 |
commit | c03cc5183d1ec3540f0b22613aedba161beeec97 (patch) | |
tree | f2e30e7ec2c277c36f78580d40ac6c4955e6189f /tests/hazmat/primitives/test_camellia.py | |
parent | d2e85573d6bcdd23a9c719dacf182165bafa22c9 (diff) | |
download | cryptography-c03cc5183d1ec3540f0b22613aedba161beeec97.tar.gz cryptography-c03cc5183d1ec3540f0b22613aedba161beeec97.tar.bz2 cryptography-c03cc5183d1ec3540f0b22613aedba161beeec97.zip |
Fixes for the latest pep8-naming (#4744)
Diffstat (limited to 'tests/hazmat/primitives/test_camellia.py')
-rw-r--r-- | tests/hazmat/primitives/test_camellia.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/hazmat/primitives/test_camellia.py b/tests/hazmat/primitives/test_camellia.py index 87fcfe3d..07a735ad 100644 --- a/tests/hazmat/primitives/test_camellia.py +++ b/tests/hazmat/primitives/test_camellia.py @@ -26,7 +26,7 @@ from ...utils import ( ) @pytest.mark.requires_backend_interface(interface=CipherBackend) class TestCamelliaModeECB(object): - test_ECB = generate_encrypt_test( + test_ecb = generate_encrypt_test( load_cryptrec_vectors, os.path.join("ciphers", "Camellia"), [ @@ -47,7 +47,7 @@ class TestCamelliaModeECB(object): ) @pytest.mark.requires_backend_interface(interface=CipherBackend) class TestCamelliaModeCBC(object): - test_CBC = generate_encrypt_test( + test_cbc = generate_encrypt_test( load_nist_vectors, os.path.join("ciphers", "Camellia"), ["camellia-cbc.txt"], @@ -64,7 +64,7 @@ class TestCamelliaModeCBC(object): ) @pytest.mark.requires_backend_interface(interface=CipherBackend) class TestCamelliaModeOFB(object): - test_OFB = generate_encrypt_test( + test_ofb = generate_encrypt_test( load_nist_vectors, os.path.join("ciphers", "Camellia"), ["camellia-ofb.txt"], @@ -81,7 +81,7 @@ class TestCamelliaModeOFB(object): ) @pytest.mark.requires_backend_interface(interface=CipherBackend) class TestCamelliaModeCFB(object): - test_CFB = generate_encrypt_test( + test_cfb = generate_encrypt_test( load_nist_vectors, os.path.join("ciphers", "Camellia"), ["camellia-cfb.txt"], |