aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-15 20:02:10 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-15 20:02:10 -0500
commitf54277876b76c867af3ad121bae7581b765fcb7c (patch)
treed31e73f517a0c3f3b8e5294428775dd43ba8ef72 /tests
parent20034b110a9e8b4e0b539bd0b8e28aa510ec9afc (diff)
downloadcryptography-f54277876b76c867af3ad121bae7581b765fcb7c.tar.gz
cryptography-f54277876b76c867af3ad121bae7581b765fcb7c.tar.bz2
cryptography-f54277876b76c867af3ad121bae7581b765fcb7c.zip
use the pragmas consistently.
Diffstat (limited to 'tests')
-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 121e62cb..c30bda48 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"): # pragma: no cover
- pytest.skip("Does not support Camellia ECB")
+ if not api.supports_cipher("camellia-128-ecb"):
+ pytest.skip("Does not support Camellia ECB") # pragma: no cover
cipher = BlockCipher(
ciphers.Camellia(binascii.unhexlify(key)),
modes.ECB(),