aboutsummaryrefslogtreecommitdiffstats
path: root/tests/primitives/test_cryptrec.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-16 18:49:26 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-16 18:49:26 -0700
commitb400804424143ed8e3a80846236174d738769353 (patch)
treeafec5b11a820049dc2dbe21a50f0864f58a42eb3 /tests/primitives/test_cryptrec.py
parent8ee102762525ff7619bc5b9c16f53f4c8537abfc (diff)
downloadcryptography-b400804424143ed8e3a80846236174d738769353.tar.gz
cryptography-b400804424143ed8e3a80846236174d738769353.tar.bz2
cryptography-b400804424143ed8e3a80846236174d738769353.zip
pep8 and py3k fixes
Diffstat (limited to 'tests/primitives/test_cryptrec.py')
-rw-r--r--tests/primitives/test_cryptrec.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/primitives/test_cryptrec.py b/tests/primitives/test_cryptrec.py
index 56eca3a1..02a04473 100644
--- a/tests/primitives/test_cryptrec.py
+++ b/tests/primitives/test_cryptrec.py
@@ -37,6 +37,8 @@ class TestCamelliaECB(object):
],
lambda key: ciphers.Camellia(binascii.unhexlify((key))),
lambda key: modes.ECB(),
- only_if=lambda api: api.supports_cipher(ciphers.Camellia("\x00" * 16), modes.ECB()),
+ only_if=lambda api: api.supports_cipher(
+ ciphers.Camellia("\x00" * 16), modes.ECB()
+ ),
skip_message="Does not support Camellia ECB",
)