diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-28 08:09:35 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-28 08:09:35 -0500 |
commit | 4365b12f01b3f5f501ca4f86c59999e78980790c (patch) | |
tree | de415a0e127396caea3a2a8daef5e400b6f9c9d1 /tests/hazmat/primitives/test_hashes.py | |
parent | 65bdfb6ee2941b6176ed6661e0aac83febc233e0 (diff) | |
parent | 117742d9ebf7504e642031dc020abf305ffb33b1 (diff) | |
download | cryptography-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_hashes.py')
-rw-r--r-- | tests/hazmat/primitives/test_hashes.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_hashes.py b/tests/hazmat/primitives/test_hashes.py index ba4f53af..0fdd7550 100644 --- a/tests/hazmat/primitives/test_hashes.py +++ b/tests/hazmat/primitives/test_hashes.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.requires_backend_interface(interface=HashBackend) |