aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_ec.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_ec.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_ec.py')
-rw-r--r--tests/hazmat/primitives/test_ec.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_ec.py b/tests/hazmat/primitives/test_ec.py
index decb3716..e6a9146c 100644
--- a/tests/hazmat/primitives/test_ec.py
+++ b/tests/hazmat/primitives/test_ec.py
@@ -68,7 +68,7 @@ class DummyCurve(object):
@utils.register_interface(interfaces.EllipticCurveSignatureAlgorithm)
class DummySignatureAlgorithm(object):
- pass
+ algorithm = None
@utils.register_interface(EllipticCurveBackend)