From b735107f0fe9529cbef070fe50112ac2c9ed9402 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Thu, 31 Oct 2013 13:18:31 -0500 Subject: rename camellia tests --- tests/hazmat/primitives/test_camellia.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/hazmat') diff --git a/tests/hazmat/primitives/test_camellia.py b/tests/hazmat/primitives/test_camellia.py index ab321a42..46e724bb 100644 --- a/tests/hazmat/primitives/test_camellia.py +++ b/tests/hazmat/primitives/test_camellia.py @@ -29,7 +29,7 @@ from ...utils import ( class TestCamelliaECB(object): - test_NTT = generate_encrypt_test( + test_ECB = generate_encrypt_test( load_cryptrec_vectors_from_file, os.path.join("ciphers", "Camellia"), [ @@ -47,7 +47,7 @@ class TestCamelliaECB(object): class TestCamelliaCBC(object): - test_OpenSSL = generate_encrypt_test( + test_CBC = generate_encrypt_test( load_openssl_vectors_from_file, os.path.join("ciphers", "Camellia"), ["camellia-cbc.txt"], @@ -61,7 +61,7 @@ class TestCamelliaCBC(object): class TestCamelliaOFB(object): - test_OpenSSL = generate_encrypt_test( + test_OFB = generate_encrypt_test( load_openssl_vectors_from_file, os.path.join("ciphers", "Camellia"), ["camellia-ofb.txt"], @@ -75,7 +75,7 @@ class TestCamelliaOFB(object): class TestCamelliaCFB(object): - test_OpenSSL = generate_encrypt_test( + test_CFB = generate_encrypt_test( load_openssl_vectors_from_file, os.path.join("ciphers", "Camellia"), ["camellia-cfb.txt"], -- cgit v1.2.3