aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_x509.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_x509.py')
-rw-r--r--tests/test_x509.py6
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'
)
]