aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_camellia.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-24 13:16:11 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-24 20:38:25 -0600
commit6e6a6ff5ae12a9dd47a806dd0929fb445d7e01ac (patch)
tree6f33aec0b15e06bf2822b8238f2bd7bd29844cfd /tests/hazmat/primitives/test_camellia.py
parent577d2951e6301dfcc711e69b142ecc8acb23b5d5 (diff)
downloadcryptography-6e6a6ff5ae12a9dd47a806dd0929fb445d7e01ac.tar.gz
cryptography-6e6a6ff5ae12a9dd47a806dd0929fb445d7e01ac.tar.bz2
cryptography-6e6a6ff5ae12a9dd47a806dd0929fb445d7e01ac.zip
updates to make the project pep8-naming clean
Diffstat (limited to 'tests/hazmat/primitives/test_camellia.py')
-rw-r--r--tests/hazmat/primitives/test_camellia.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/hazmat/primitives/test_camellia.py b/tests/hazmat/primitives/test_camellia.py
index 4b3a67c5..25bd0ff9 100644
--- a/tests/hazmat/primitives/test_camellia.py
+++ b/tests/hazmat/primitives/test_camellia.py
@@ -33,7 +33,7 @@ from ...utils import (
skip_message="Does not support Camellia ECB",
)
@pytest.mark.cipher
-class TestCamellia_ECB(object):
+class TestCamelliaModeECB(object):
test_ECB = generate_encrypt_test(
load_cryptrec_vectors,
os.path.join("ciphers", "Camellia"),
@@ -54,7 +54,7 @@ class TestCamellia_ECB(object):
skip_message="Does not support Camellia CBC",
)
@pytest.mark.cipher
-class TestCamellia_CBC(object):
+class TestCamelliaModeCBC(object):
test_CBC = generate_encrypt_test(
load_nist_vectors,
os.path.join("ciphers", "Camellia"),
@@ -71,7 +71,7 @@ class TestCamellia_CBC(object):
skip_message="Does not support Camellia OFB",
)
@pytest.mark.cipher
-class TestCamellia_OFB(object):
+class TestCamelliaModeOFB(object):
test_OFB = generate_encrypt_test(
load_nist_vectors,
os.path.join("ciphers", "Camellia"),
@@ -88,7 +88,7 @@ class TestCamellia_OFB(object):
skip_message="Does not support Camellia CFB",
)
@pytest.mark.cipher
-class TestCamellia_CFB(object):
+class TestCamelliaModeCFB(object):
test_CFB = generate_encrypt_test(
load_nist_vectors,
os.path.join("ciphers", "Camellia"),