diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-28 10:09:49 +0900 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-28 10:09:49 +0900 |
commit | 197db3367ceecdbaf0adc5eaa9339b934b10acfe (patch) | |
tree | a7d0e14dbd38662462973702e0f72805d2293ebb /tests/hazmat/primitives/test_ec.py | |
parent | 1a1b1157a2d393b314f3e1303f2f724118d2cae2 (diff) | |
download | cryptography-197db3367ceecdbaf0adc5eaa9339b934b10acfe.tar.gz cryptography-197db3367ceecdbaf0adc5eaa9339b934b10acfe.tar.bz2 cryptography-197db3367ceecdbaf0adc5eaa9339b934b10acfe.zip |
address review feedback
Diffstat (limited to 'tests/hazmat/primitives/test_ec.py')
-rw-r--r-- | tests/hazmat/primitives/test_ec.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/hazmat/primitives/test_ec.py b/tests/hazmat/primitives/test_ec.py index ac1ba27a..5baaa3cd 100644 --- a/tests/hazmat/primitives/test_ec.py +++ b/tests/hazmat/primitives/test_ec.py @@ -167,13 +167,6 @@ def test_encode_point(): ) -def test_from_encoded_point_null(): - with pytest.raises(ValueError): - ec.EllipticCurvePublicNumbers.from_encoded_point( - ec.SECP384R1(), b"\x00" - ) - - def test_from_encoded_point(): # secp256r1 point data = binascii.unhexlify( |