From 28350d612e4f2cbb7cdf3187a871a0e9f3c04724 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Thu, 20 Jun 2019 13:38:35 +0200 Subject: 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. --- python/tests/session_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/tests/session_test.py') 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"�" -- cgit v1.2.3