diff options
author | Ayrx <terrycwk1994@gmail.com> | 2014-06-25 22:08:33 +0800 |
---|---|---|
committer | Ayrx <terrycwk1994@gmail.com> | 2014-06-25 22:08:33 +0800 |
commit | beb1f0c6fe2a4b64d78ed9e84d887cf372929276 (patch) | |
tree | 9da47313cfe398ae814b337365eaac4c53ba77bc | |
parent | 020d49d5b5d9ddddd773374178183c4ee11f00ce (diff) | |
download | cryptography-beb1f0c6fe2a4b64d78ed9e84d887cf372929276.tar.gz cryptography-beb1f0c6fe2a4b64d78ed9e84d887cf372929276.tar.bz2 cryptography-beb1f0c6fe2a4b64d78ed9e84d887cf372929276.zip |
Removed unnecessary tests
-rw-r--r-- | tests/hazmat/primitives/test_ec.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/hazmat/primitives/test_ec.py b/tests/hazmat/primitives/test_ec.py index e425ec8d..2690e794 100644 --- a/tests/hazmat/primitives/test_ec.py +++ b/tests/hazmat/primitives/test_ec.py @@ -302,13 +302,3 @@ class TestECDSAVectors(object): verifier.verify() else: verifier.verify() - - -@pytest.mark.elliptic -def test_generate_elliptic_curve_private_key(backend): - with raises_unsupported_algorithm( - exceptions._Reasons.UNSUPPORTED_ELLIPTIC_CURVE - ): - ec.generate_private_key( - DummyCurve(), backend - ) |