commit | 6575bd1be4476780ddd426e977401c057cb067bf | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Sat Sep 05 16:44:36 2015 -0400 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Sat Sep 05 16:44:36 2015 -0400 |
tree | 9caa0da353deb15dc157e231f0191bc296ef8988 | |
parent | 85b4970abec3a68f5d64756963dd3899eca5bd54 [diff] [blame] |
fixed for py3k
diff --git a/OpenSSL/test/test_crypto.py b/OpenSSL/test/test_crypto.py index 6c8f179..0c906b6 100644 --- a/OpenSSL/test/test_crypto.py +++ b/OpenSSL/test/test_crypto.py
@@ -2210,7 +2210,7 @@ """ A PKCS12 with an empty CA certificates list can be exported. """ - passwd = 'Hobie 18' + passwd = b'Hobie 18' p12 = self.gen_pkcs12(server_cert_pem, server_key_pem) p12.set_ca_certificates([]) self.assertEqual((), p12.get_ca_certificates())