aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_hmac.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-10-28 08:09:35 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-10-28 08:09:35 -0500
commit4365b12f01b3f5f501ca4f86c59999e78980790c (patch)
treede415a0e127396caea3a2a8daef5e400b6f9c9d1 /tests/hazmat/primitives/test_hmac.py
parent65bdfb6ee2941b6176ed6661e0aac83febc233e0 (diff)
parent117742d9ebf7504e642031dc020abf305ffb33b1 (diff)
downloadcryptography-4365b12f01b3f5f501ca4f86c59999e78980790c.tar.gz
cryptography-4365b12f01b3f5f501ca4f86c59999e78980790c.tar.bz2
cryptography-4365b12f01b3f5f501ca4f86c59999e78980790c.zip
Merge pull request #1448 from alex/fakes-need-attributes-too
Added attributes that are part of hte interface to several test fakes
Diffstat (limited to 'tests/hazmat/primitives/test_hmac.py')
-rw-r--r--tests/hazmat/primitives/test_hmac.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_hmac.py b/tests/hazmat/primitives/test_hmac.py
index baf8a299..3553632c 100644
--- a/tests/hazmat/primitives/test_hmac.py
+++ b/tests/hazmat/primitives/test_hmac.py
@@ -33,6 +33,8 @@ from ...utils import raises_unsupported_algorithm
@utils.register_interface(interfaces.HashAlgorithm)
class UnsupportedDummyHash(object):
name = "unsupported-dummy-hash"
+ block_size = None
+ digest_size = None
@pytest.mark.supported(