diff options
Diffstat (limited to 'tests/hazmat/primitives')
-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( |