aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_ec.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-27 09:43:14 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-27 09:43:14 -0500
commit7ee7d5ba847b0e1c6db4afc02fa858ac8734ba6b (patch)
tree086ca7f22f9a5778025d71a9b6d396a4ffa612c5 /tests/hazmat/primitives/test_ec.py
parent1061453bfb9d5555e80dcabf82b5b43596c8bd04 (diff)
downloadcryptography-7ee7d5ba847b0e1c6db4afc02fa858ac8734ba6b.tar.gz
cryptography-7ee7d5ba847b0e1c6db4afc02fa858ac8734ba6b.tar.bz2
cryptography-7ee7d5ba847b0e1c6db4afc02fa858ac8734ba6b.zip
fix invalid dict reference in test
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 a2613db8..f9eab7ac 100644
--- a/tests/hazmat/primitives/test_ec.py
+++ b/tests/hazmat/primitives/test_ec.py
@@ -142,7 +142,7 @@ class TestECWithNumbers(object):
))
)
def test_with_numbers(self, backend, vector, hash_type):
- curve_type = _CURVE_TYPES[vector['curve']]
+ curve_type = ec._CURVE_TYPES[vector['curve']]
_skip_ecdsa_vector(backend, curve_type, hash_type)