aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-02-23 23:47:06 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-02-25 07:50:25 -0600
commit858dd3fcb2851b647c2581c8f4246d0d9c7c2be2 (patch)
treeb8cc8dabd809ee95e123cb9dd183f96d2763caf1 /tests
parent8aad028501ef434071d3969bce41c4e6375b4c61 (diff)
downloadcryptography-858dd3fcb2851b647c2581c8f4246d0d9c7c2be2.tar.gz
cryptography-858dd3fcb2851b647c2581c8f4246d0d9c7c2be2.tar.bz2
cryptography-858dd3fcb2851b647c2581c8f4246d0d9c7c2be2.zip
listify a parametrized test
Diffstat (limited to 'tests')
-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 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)