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_block.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_block.py')
-rw-r--r-- | tests/hazmat/primitives/test_block.py | 1 |
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) |