use the pragmas consistently.
diff --git a/tests/primitives/test_cryptrec.py b/tests/primitives/test_cryptrec.py
index 121e62c..c30bda4 100644
--- a/tests/primitives/test_cryptrec.py
+++ b/tests/primitives/test_cryptrec.py
@@ -50,8 +50,8 @@
         ]
     )
     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(),