aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_hashes.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-10-27 10:24:43 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-10-27 10:24:43 -0700
commit22eb4c91914cd2f0ad2cb67ad27e5bfb60400492 (patch)
treef2ac2d307c0d11950137f55b9132dab411e984b8 /tests/hazmat/primitives/test_hashes.py
parent65bdfb6ee2941b6176ed6661e0aac83febc233e0 (diff)
downloadcryptography-22eb4c91914cd2f0ad2cb67ad27e5bfb60400492.tar.gz
cryptography-22eb4c91914cd2f0ad2cb67ad27e5bfb60400492.tar.bz2
cryptography-22eb4c91914cd2f0ad2cb67ad27e5bfb60400492.zip
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.py2
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)