From ef1c9bd68fb3cac41d71eeeb70a9741a900121d6 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Tue, 30 Sep 2014 08:10:17 -0500 Subject: fix a coverage miss --- tests/hazmat/primitives/test_rsa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/hazmat/primitives') diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index 2323b0e5..d1583e25 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -1451,7 +1451,7 @@ class TestRSANumbers(object): # Test a public_exponent that is not odd. with pytest.raises(ValueError): - rsa.RSAPublicNumbers(e=16, n=15).public_key(backend) + rsa.RSAPublicNumbers(e=14, n=15).public_key(backend) def test_invalid_private_numbers_argument_values(self, backend): # Start with p=3, q=11, private_exponent=3, public_exponent=7, -- cgit v1.2.3