diff options
author | Damir Jelić <poljar@termina.org.uk> | 2019-06-20 13:38:35 +0200 |
---|---|---|
committer | Damir Jelić <poljar@termina.org.uk> | 2019-06-20 14:07:14 +0200 |
commit | 28350d612e4f2cbb7cdf3187a871a0e9f3c04724 (patch) | |
tree | a1d63e81df5434a615fc8c6fcd589e6f9dc2a8f4 /python/tests | |
parent | c4d703ac3dc6f7d4962d26d252d1ac2afbec0015 (diff) |
tests: Use Unicode literals in the Unicode decoding tests.
This is needed because the function returns Unicode strings and the
comparison will fail under python2 unless Unicode literals are used.
Diffstat (limited to 'python/tests')
-rw-r--r-- | python/tests/group_session_test.py | 2 | ||||
-rw-r--r-- | python/tests/pk_test.py | 2 | ||||
-rw-r--r-- | python/tests/session_test.py | 2 |
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"�" |