aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-30 08:10:17 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-30 08:10:17 -0500
commitef1c9bd68fb3cac41d71eeeb70a9741a900121d6 (patch)
tree51792e33bb0dbbe29129092caf339a9dade84061 /tests/hazmat/primitives
parentf59ad86676a3caceb8ab33d233d9361a9021916e (diff)
downloadcryptography-ef1c9bd68fb3cac41d71eeeb70a9741a900121d6.tar.gz
cryptography-ef1c9bd68fb3cac41d71eeeb70a9741a900121d6.tar.bz2
cryptography-ef1c9bd68fb3cac41d71eeeb70a9741a900121d6.zip
fix a coverage miss
Diffstat (limited to 'tests/hazmat/primitives')
-rw-r--r--tests/hazmat/primitives/test_rsa.py2
1 files changed, 1 insertions, 1 deletions
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,