aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/tests/group_session_test.py2
-rw-r--r--python/tests/pk_test.py2
-rw-r--r--python/tests/session_test.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/python/tests/group_session_test.py b/python/tests/group_session_test.py
index 3942024..b45fbb6 100644
--- a/python/tests/group_session_test.py
+++ b/python/tests/group_session_test.py
@@ -125,7 +125,7 @@ class TestClass(object):
plaintext, _ = inbound.decrypt(text)
print(plaintext)
- assert plaintext == "�"
+ assert plaintext == u"�"
plaintext, _ = inbound.decrypt(text, "ignore")
assert plaintext == ""
diff --git a/python/tests/pk_test.py b/python/tests/pk_test.py
index 749d2eb..b82f420 100644
--- a/python/tests/pk_test.py
+++ b/python/tests/pk_test.py
@@ -64,4 +64,4 @@ class TestClass(object):
encryption = PkEncryption(decryption.public_key)
message = encryption.encrypt(bytes([0xed]))
plaintext = decryption.decrypt(message)
- assert plaintext == "�"
+ assert plaintext == u"�"
diff --git a/python/tests/session_test.py b/python/tests/session_test.py
index 56a6b83..dce37c5 100644
--- a/python/tests/session_test.py
+++ b/python/tests/session_test.py
@@ -151,4 +151,4 @@ class TestClass(object):
bob_session = InboundSession(bob, message)
plaintext = bob_session.decrypt(message)
- assert plaintext == "�"
+ assert plaintext == u"�"