diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-24 17:17:58 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-24 17:17:58 -0500 |
commit | cfa077fe0ce0e60c1285c923dad564fef55c2274 (patch) | |
tree | 40e5149e8c9d7ae7761948b8f2464c4120e7aeb2 /tests/hazmat/primitives/test_rsa.py | |
parent | dcf63ab6bcee9d5a4ae837186db8f0804ddca62c (diff) | |
parent | 44925622fe954ab1984d34911d3ccfddb9a5d89a (diff) | |
download | cryptography-cfa077fe0ce0e60c1285c923dad564fef55c2274.tar.gz cryptography-cfa077fe0ce0e60c1285c923dad564fef55c2274.tar.bz2 cryptography-cfa077fe0ce0e60c1285c923dad564fef55c2274.zip |
Merge pull request #964 from alex/i-hate-strings
No more comma seperated string strings
Diffstat (limited to 'tests/hazmat/primitives/test_rsa.py')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index 7cf6e2f0..032ed473 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -95,7 +95,7 @@ def test_modular_inverse(): @pytest.mark.rsa class TestRSA(object): @pytest.mark.parametrize( - "public_exponent,key_size", + ("public_exponent", "key_size"), itertools.product( (3, 5, 65537), (1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1536, 2048) |