From 858dd3fcb2851b647c2581c8f4246d0d9c7c2be2 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 23 Feb 2015 23:47:06 -0600 Subject: listify a parametrized test --- tests/hazmat/primitives/test_rsa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3