aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_block.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_block.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_block.py')
-rw-r--r--tests/hazmat/primitives/test_block.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_block.py b/tests/hazmat/primitives/test_block.py
index 6ee230a7..14f76758 100644
--- a/tests/hazmat/primitives/test_block.py
+++ b/tests/hazmat/primitives/test_block.py
@@ -44,6 +44,7 @@ class DummyMode(object):
@utils.register_interface(interfaces.CipherAlgorithm)
class DummyCipher(object):
name = "dummy-cipher"
+ key_size = None
@pytest.mark.requires_backend_interface(interface=CipherBackend)