aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_constant_time.py
diff options
context:
space:
mode:
authorEeshan Garg <jerryguitarist@gmail.com>2015-04-29 17:51:55 +0530
committerEeshan Garg <jerryguitarist@gmail.com>2015-04-29 17:51:55 +0530
commit424c0e253fe871dbc61b704caef0e0877b7e46f0 (patch)
tree4261827c08740791a378c71c08dc0f7da6be11af /tests/hazmat/primitives/test_constant_time.py
parent813c3280a47dfb163367cc12e7b85e6f301a7695 (diff)
downloadcryptography-424c0e253fe871dbc61b704caef0e0877b7e46f0.tar.gz
cryptography-424c0e253fe871dbc61b704caef0e0877b7e46f0.tar.bz2
cryptography-424c0e253fe871dbc61b704caef0e0877b7e46f0.zip
Refs #1870 - replace six.u with u prefix in tests/hazmat/primitives
Diffstat (limited to 'tests/hazmat/primitives/test_constant_time.py')
-rw-r--r--tests/hazmat/primitives/test_constant_time.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/hazmat/primitives/test_constant_time.py b/tests/hazmat/primitives/test_constant_time.py
index dad1b612..e8e85a84 100644
--- a/tests/hazmat/primitives/test_constant_time.py
+++ b/tests/hazmat/primitives/test_constant_time.py
@@ -6,21 +6,19 @@ from __future__ import absolute_import, division, print_function
import pytest
-import six
-
from cryptography.hazmat.primitives import constant_time
class TestConstantTimeBytesEq(object):
def test_reject_unicode(self):
with pytest.raises(TypeError):
- constant_time.bytes_eq(b"foo", six.u("foo"))
+ constant_time.bytes_eq(b"foo", u"foo")
with pytest.raises(TypeError):
- constant_time.bytes_eq(six.u("foo"), b"foo")
+ constant_time.bytes_eq(u"foo", b"foo")
with pytest.raises(TypeError):
- constant_time.bytes_eq(six.u("foo"), six.u("foo"))
+ constant_time.bytes_eq(u"foo", u"foo")
def test_compares(self):
assert constant_time.bytes_eq(b"foo", b"foo") is True