aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_block.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_block.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_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)