aboutsummaryrefslogtreecommitdiffstats
path: root/tests/primitives/test_cryptrec.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/primitives/test_cryptrec.py')
-rw-r--r--tests/primitives/test_cryptrec.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/primitives/test_cryptrec.py b/tests/primitives/test_cryptrec.py
index de26ebd2..121e62cb 100644
--- a/tests/primitives/test_cryptrec.py
+++ b/tests/primitives/test_cryptrec.py
@@ -50,7 +50,7 @@ class TestCamelliaECB(object):
]
)
def test_NTT(self, key, plaintext, ciphertext, api):
- if not api.supports_cipher("camellia-128-ecb"):
+ if not api.supports_cipher("camellia-128-ecb"): # pragma: no cover
pytest.skip("Does not support Camellia ECB")
cipher = BlockCipher(
ciphers.Camellia(binascii.unhexlify(key)),