aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_camellia.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-03-04 15:01:49 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-03-04 15:01:49 -0800
commitaee8b1aee873f125ba6fad172c2fcbe205fe8fe4 (patch)
treeff081c202e462958766a6d8803d5422c28b552cb /tests/hazmat/primitives/test_camellia.py
parent8566cac67b57d93d822bdfa73345a1f679d30701 (diff)
parent6e6a6ff5ae12a9dd47a806dd0929fb445d7e01ac (diff)
downloadcryptography-aee8b1aee873f125ba6fad172c2fcbe205fe8fe4.tar.gz
cryptography-aee8b1aee873f125ba6fad172c2fcbe205fe8fe4.tar.bz2
cryptography-aee8b1aee873f125ba6fad172c2fcbe205fe8fe4.zip
Merge pull request #683 from reaperhulk/pep8-naming
More Automated Checks (pep8-naming)
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"),