aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_idea.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2019-02-02 23:23:52 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2019-02-02 20:23:52 -0800
commitc03cc5183d1ec3540f0b22613aedba161beeec97 (patch)
treef2e30e7ec2c277c36f78580d40ac6c4955e6189f /tests/hazmat/primitives/test_idea.py
parentd2e85573d6bcdd23a9c719dacf182165bafa22c9 (diff)
downloadcryptography-c03cc5183d1ec3540f0b22613aedba161beeec97.tar.gz
cryptography-c03cc5183d1ec3540f0b22613aedba161beeec97.tar.bz2
cryptography-c03cc5183d1ec3540f0b22613aedba161beeec97.zip
Fixes for the latest pep8-naming (#4744)
Diffstat (limited to 'tests/hazmat/primitives/test_idea.py')
-rw-r--r--tests/hazmat/primitives/test_idea.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/hazmat/primitives/test_idea.py b/tests/hazmat/primitives/test_idea.py
index 75116dc1..6b8a2a87 100644
--- a/tests/hazmat/primitives/test_idea.py
+++ b/tests/hazmat/primitives/test_idea.py
@@ -24,7 +24,7 @@ from ...utils import load_nist_vectors
)
@pytest.mark.requires_backend_interface(interface=CipherBackend)
class TestIDEAModeECB(object):
- test_ECB = generate_encrypt_test(
+ test_ecb = generate_encrypt_test(
load_nist_vectors,
os.path.join("ciphers", "IDEA"),
["idea-ecb.txt"],
@@ -41,7 +41,7 @@ class TestIDEAModeECB(object):
)
@pytest.mark.requires_backend_interface(interface=CipherBackend)
class TestIDEAModeCBC(object):
- test_CBC = generate_encrypt_test(
+ test_cbc = generate_encrypt_test(
load_nist_vectors,
os.path.join("ciphers", "IDEA"),
["idea-cbc.txt"],
@@ -58,7 +58,7 @@ class TestIDEAModeCBC(object):
)
@pytest.mark.requires_backend_interface(interface=CipherBackend)
class TestIDEAModeOFB(object):
- test_OFB = generate_encrypt_test(
+ test_ofb = generate_encrypt_test(
load_nist_vectors,
os.path.join("ciphers", "IDEA"),
["idea-ofb.txt"],
@@ -75,7 +75,7 @@ class TestIDEAModeOFB(object):
)
@pytest.mark.requires_backend_interface(interface=CipherBackend)
class TestIDEAModeCFB(object):
- test_CFB = generate_encrypt_test(
+ test_cfb = generate_encrypt_test(
load_nist_vectors,
os.path.join("ciphers", "IDEA"),
["idea-cfb.txt"],