diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-04-29 09:56:26 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-04-29 09:56:26 -0400 |
commit | d12bd10e35116575c5a1a3cabb31484b76c15837 (patch) | |
tree | ec999c95a587e06a7cd9eb167d6fe64a17baa097 /tests/test_x509.py | |
parent | 699ec19d8021c4203f7e741094c699292d4ce80f (diff) | |
parent | f12341503136d1755b30aeb13f2ae3e9864199fc (diff) | |
download | cryptography-d12bd10e35116575c5a1a3cabb31484b76c15837.tar.gz cryptography-d12bd10e35116575c5a1a3cabb31484b76c15837.tar.bz2 cryptography-d12bd10e35116575c5a1a3cabb31484b76c15837.zip |
Merge pull request #1874 from eeshangarg/starter-project-1870-2
Replace the remaining occurrences of six.u with the u prefix
Diffstat (limited to 'tests/test_x509.py')
-rw-r--r-- | tests/test_x509.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py index d8a4cc02..df291de2 100644 --- a/tests/test_x509.py +++ b/tests/test_x509.py @@ -10,8 +10,6 @@ import os import pytest -import six - from cryptography import x509 from cryptography.exceptions import UnsupportedAlgorithm from cryptography.hazmat.backends.interfaces import ( @@ -167,13 +165,13 @@ class TestRSACertificate(object): assert cert.subject.get_attributes_for_oid(x509.OID_COMMON_NAME) == [ x509.NameAttribute( x509.OID_COMMON_NAME, - six.u('We heart UTF8!\u2122') + u'We heart UTF8!\u2122' ) ] assert cert.issuer.get_attributes_for_oid(x509.OID_COMMON_NAME) == [ x509.NameAttribute( x509.OID_COMMON_NAME, - six.u('We heart UTF8!\u2122') + u'We heart UTF8!\u2122' ) ] |