diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-05-02 16:42:52 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-05-02 16:42:52 -0500 |
commit | e3a330cc10b9672cf91a77b89886a069357943f2 (patch) | |
tree | ce43884ee1807db710de59a47e6cf9c2039672fd /tests/test_x509_ext.py | |
parent | 778bc6092139dca93f1a9ac4311eafeaa7ebf107 (diff) | |
download | cryptography-e3a330cc10b9672cf91a77b89886a069357943f2.tar.gz cryptography-e3a330cc10b9672cf91a77b89886a069357943f2.tar.bz2 cryptography-e3a330cc10b9672cf91a77b89886a069357943f2.zip |
missed a u
Diffstat (limited to 'tests/test_x509_ext.py')
-rw-r--r-- | tests/test_x509_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_x509_ext.py b/tests/test_x509_ext.py index 7320b94e..c1d51e5e 100644 --- a/tests/test_x509_ext.py +++ b/tests/test_x509_ext.py @@ -917,7 +917,7 @@ class TestRSASubjectAlternativeNameExtension(object): ip = san.get_values_for_type(x509.IPAddress) dirname = san.get_values_for_type(x509.DirectoryName) assert [u"user@cryptography.io"] == rfc822_name - assert ["https://cryptography.io"] == uri + assert [u"https://cryptography.io"] == uri assert [u"cryptography.io"] == dns assert [ x509.Name([ |