aboutsummaryrefslogtreecommitdiffstats
path: root/tests/primitives/test_cryptrec.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-06 12:24:47 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-06 17:31:31 -0500
commit84bb1bb2c04c8e05a072587f9e622f6a5e99de56 (patch)
tree6557c523e04c50733909463235eb977aa2b25ada /tests/primitives/test_cryptrec.py
parentf2ce1ae856e43a292ea7a6aae26d75b508f0a363 (diff)
downloadcryptography-84bb1bb2c04c8e05a072587f9e622f6a5e99de56.tar.gz
cryptography-84bb1bb2c04c8e05a072587f9e622f6a5e99de56.tar.bz2
cryptography-84bb1bb2c04c8e05a072587f9e622f6a5e99de56.zip
remove openssl api dependency in test_openssl_vectors
Update some single quotes to double for consistency
Diffstat (limited to 'tests/primitives/test_cryptrec.py')
-rw-r--r--tests/primitives/test_cryptrec.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/primitives/test_cryptrec.py b/tests/primitives/test_cryptrec.py
index fb2bf19a..de26ebd2 100644
--- a/tests/primitives/test_cryptrec.py
+++ b/tests/primitives/test_cryptrec.py
@@ -50,8 +50,8 @@ class TestCamelliaECB(object):
]
)
def test_NTT(self, key, plaintext, ciphertext, api):
- if not api.supports_cipher('camellia-128-ecb'):
- pytest.skip()
+ if not api.supports_cipher("camellia-128-ecb"):
+ pytest.skip("Does not support Camellia ECB")
cipher = BlockCipher(
ciphers.Camellia(binascii.unhexlify(key)),
modes.ECB(),