aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_hmac.py
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@twistedmatrix.com>2013-12-27 11:09:54 -0500
committerJean-Paul Calderone <exarkun@twistedmatrix.com>2013-12-27 11:09:54 -0500
commit504e3cfd829f6b5348f27013a8626106aa6cf995 (patch)
tree5dfebbb72769a9886bb43236f884c0ae900617db /tests/hazmat/primitives/test_hmac.py
parent3d1d97fa108ced9eae99fc99a5d6399811022425 (diff)
parentb645521e84026633f666aa107816ac2fc5e05cc6 (diff)
downloadcryptography-504e3cfd829f6b5348f27013a8626106aa6cf995.tar.gz
cryptography-504e3cfd829f6b5348f27013a8626106aa6cf995.tar.bz2
cryptography-504e3cfd829f6b5348f27013a8626106aa6cf995.zip
Merge remote-tracking branch 'origin/master' into pyopenssl-test_crypto-with-optionals
Diffstat (limited to 'tests/hazmat/primitives/test_hmac.py')
-rw-r--r--tests/hazmat/primitives/test_hmac.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_hmac.py b/tests/hazmat/primitives/test_hmac.py
index 124c4377..6d8cc27b 100644
--- a/tests/hazmat/primitives/test_hmac.py
+++ b/tests/hazmat/primitives/test_hmac.py
@@ -31,10 +31,11 @@ class UnsupportedDummyHash(object):
name = "unsupported-dummy-hash"
+@pytest.mark.hmac
class TestHMAC(object):
test_copy = generate_base_hmac_test(
hashes.MD5(),
- only_if=lambda backend: backend.hash_supported(hashes.MD5),
+ only_if=lambda backend: backend.hmac_supported(hashes.MD5),
skip_message="Does not support MD5",
)