diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-24 17:30:33 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-24 17:30:41 -0500 |
commit | c83e6ef3a210a0294658baf1f7e6ecbd7a7e3d05 (patch) | |
tree | 636069383c4e0143c0a470500c459e3c7a9670a7 /tests/hazmat/primitives/test_rsa.py | |
parent | 4ce810e22ccbf9ed1eadb4695e4cbe4cb59230fa (diff) | |
download | cryptography-c83e6ef3a210a0294658baf1f7e6ecbd7a7e3d05.tar.gz cryptography-c83e6ef3a210a0294658baf1f7e6ecbd7a7e3d05.tar.bz2 cryptography-c83e6ef3a210a0294658baf1f7e6ecbd7a7e3d05.zip |
another style fix in the rsa tests that I missed last time...
Diffstat (limited to 'tests/hazmat/primitives/test_rsa.py')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index adc46de4..7d104da7 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -1384,7 +1384,7 @@ class TestRSADecryption(object): @pytest.mark.rsa class TestRSAEncryption(object): @pytest.mark.parametrize( - "key_size,pad", + ("key_size", "pad"), itertools.product( (1024, 1025, 1029, 1031, 1536, 2048), ( @@ -1420,7 +1420,7 @@ class TestRSAEncryption(object): assert recovered_pt == pt @pytest.mark.parametrize( - ["key_size", "pad"], + ("key_size", "pad"), itertools.product( (1024, 1025, 1029, 1031, 1536, 2048), ( |