diff options
Diffstat (limited to 'tests/hazmat/primitives')
-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 17a2a414..8dcb6450 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -1781,7 +1781,7 @@ class TestRSAPEMWriter(object): @pytest.mark.parametrize( "fmt", - (serialization.Format.TraditionalOpenSSL, serialization.Format.PKCS8), + [serialization.Format.TraditionalOpenSSL, serialization.Format.PKCS8], ) def test_as_bytes_unencrypted_pem(self, backend, fmt): key = RSA_KEY_2048.private_key(backend) |