From c83e6ef3a210a0294658baf1f7e6ecbd7a7e3d05 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Thu, 24 Apr 2014 17:30:33 -0500 Subject: another style fix in the rsa tests that I missed last time... --- tests/hazmat/primitives/test_rsa.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/hazmat/primitives/test_rsa.py') 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), ( -- cgit v1.2.3