diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-28 09:13:00 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-28 09:13:00 -0700 |
commit | e49fafbb8a63e946d3dbff359e284ca05a74589e (patch) | |
tree | 1ad7ef5a1b5b30fd25a5bcfc3a7246d96604dc80 | |
parent | be2eec7aabde5f9877ffbbcce96c10eab454ac38 (diff) | |
download | cryptography-e49fafbb8a63e946d3dbff359e284ca05a74589e.tar.gz cryptography-e49fafbb8a63e946d3dbff359e284ca05a74589e.tar.bz2 cryptography-e49fafbb8a63e946d3dbff359e284ca05a74589e.zip |
fix
-rw-r--r-- | tests/hazmat/backends/test_commoncrypto.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/backends/test_commoncrypto.py b/tests/hazmat/backends/test_commoncrypto.py index 6bb0ede0..eb61a574 100644 --- a/tests/hazmat/backends/test_commoncrypto.py +++ b/tests/hazmat/backends/test_commoncrypto.py @@ -29,8 +29,8 @@ from ...utils import raises_unsupported_algorithm @utils.register_interface(interfaces.CipherAlgorithm) class DummyCipher(object): name = "dummy-cipher" - block_size = 128 - digest_size = None + block_size = None + key_size = None @pytest.mark.skipif("commoncrypto" not in |