From 5ca9946a5ae87ceedc4b6f2744b9300e957c8a98 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 10 May 2017 23:11:30 -0400 Subject: Fixes #3538 -- Make our OpenSSL EC verifier's implementation match the API (#3539) * Document our real API for EC verification, not an accident * formatting consistency * fix the code itself * fixed class name * fixed a test too --- tests/hazmat/primitives/test_ec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/hazmat/primitives') diff --git a/tests/hazmat/primitives/test_ec.py b/tests/hazmat/primitives/test_ec.py index 7127071f..ad4bbc51 100644 --- a/tests/hazmat/primitives/test_ec.py +++ b/tests/hazmat/primitives/test_ec.py @@ -508,7 +508,7 @@ class TestECDSAVectors(object): ec.ECDSA(hash_type()) ) verifier.update(vector['message']) - assert verifier.verify() + verifier.verify() @pytest.mark.parametrize( "vector", -- cgit v1.2.3