commit | 06754fc64b15c348a0f433e695588cb40e1f3bd4 | [log] [tgz] |
---|---|---|
author | Jean-Paul Calderone <exarkun@twistedmatrix.com> | Fri Aug 23 15:47:47 2013 -0400 |
committer | Jean-Paul Calderone <exarkun@twistedmatrix.com> | Fri Aug 23 15:47:47 2013 -0400 |
tree | 1f12ac36d207361b99283c7f015acd4d1abad4f5 | |
parent | bb04db80e51283ff7f2a9619dd9015c48d8f1af2 [diff] [blame] |
in fact, commonName is a native string
diff --git a/OpenSSL/test/test_crypto.py b/OpenSSL/test/test_crypto.py index 8ac80c0..9b49213 100644 --- a/OpenSSL/test/test_crypto.py +++ b/OpenSSL/test/test_crypto.py
@@ -895,7 +895,7 @@ cert = load_certificate(FILETYPE_PEM, nulbyteSubjectAltNamePEM) subject = cert.get_subject() self.assertEqual( - b("null.python.org\x00example.org"), subject.commonName) + "null.python.org\x00example.org", subject.commonName)