aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_rsa.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-04-24 14:01:35 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-04-24 14:01:35 -0700
commit44925622fe954ab1984d34911d3ccfddb9a5d89a (patch)
treefb2e190faa1c9a4e4691e4b086497bdd5d181809 /tests/hazmat/primitives/test_rsa.py
parent13ec5478f95cdffc7f0d224c80eb1a595a2538b0 (diff)
downloadcryptography-44925622fe954ab1984d34911d3ccfddb9a5d89a.tar.gz
cryptography-44925622fe954ab1984d34911d3ccfddb9a5d89a.tar.bz2
cryptography-44925622fe954ab1984d34911d3ccfddb9a5d89a.zip
No more comma seperated string strings
Diffstat (limited to 'tests/hazmat/primitives/test_rsa.py')
-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 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)