aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-10-28 09:13:00 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-10-28 09:13:00 -0700
commite49fafbb8a63e946d3dbff359e284ca05a74589e (patch)
tree1ad7ef5a1b5b30fd25a5bcfc3a7246d96604dc80 /tests
parentbe2eec7aabde5f9877ffbbcce96c10eab454ac38 (diff)
downloadcryptography-e49fafbb8a63e946d3dbff359e284ca05a74589e.tar.gz
cryptography-e49fafbb8a63e946d3dbff359e284ca05a74589e.tar.bz2
cryptography-e49fafbb8a63e946d3dbff359e284ca05a74589e.zip
fix
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/backends/test_commoncrypto.py4
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