diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-09-27 09:43:14 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-09-27 09:43:14 -0500 |
commit | 7ee7d5ba847b0e1c6db4afc02fa858ac8734ba6b (patch) | |
tree | 086ca7f22f9a5778025d71a9b6d396a4ffa612c5 | |
parent | 1061453bfb9d5555e80dcabf82b5b43596c8bd04 (diff) | |
download | cryptography-7ee7d5ba847b0e1c6db4afc02fa858ac8734ba6b.tar.gz cryptography-7ee7d5ba847b0e1c6db4afc02fa858ac8734ba6b.tar.bz2 cryptography-7ee7d5ba847b0e1c6db4afc02fa858ac8734ba6b.zip |
fix invalid dict reference in test
-rw-r--r-- | tests/hazmat/primitives/test_ec.py | 2 |
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) |