diff options
author | Eeshan Garg <jerryguitarist@gmail.com> | 2015-04-29 18:41:00 +0530 |
---|---|---|
committer | Eeshan Garg <jerryguitarist@gmail.com> | 2015-04-29 18:41:00 +0530 |
commit | f12341503136d1755b30aeb13f2ae3e9864199fc (patch) | |
tree | 15c66edf7c70776e959a3caa703e34488e91fcbc /tests/test_x509.py | |
parent | 813c3280a47dfb163367cc12e7b85e6f301a7695 (diff) | |
download | cryptography-f12341503136d1755b30aeb13f2ae3e9864199fc.tar.gz cryptography-f12341503136d1755b30aeb13f2ae3e9864199fc.tar.bz2 cryptography-f12341503136d1755b30aeb13f2ae3e9864199fc.zip |
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' ) ] |