Loading python/tests/group_session_test.py +1 −1 Original line number Diff line number Diff line Loading @@ -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 == "" python/tests/pk_test.py +1 −1 Original line number Diff line number Diff line Loading @@ -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"�" python/tests/session_test.py +1 −1 Original line number Diff line number Diff line Loading @@ -151,4 +151,4 @@ class TestClass(object): bob_session = InboundSession(bob, message) plaintext = bob_session.decrypt(message) assert plaintext == "�" assert plaintext == u"�" Loading
python/tests/group_session_test.py +1 −1 Original line number Diff line number Diff line Loading @@ -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 == ""
python/tests/pk_test.py +1 −1 Original line number Diff line number Diff line Loading @@ -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"�"
python/tests/session_test.py +1 −1 Original line number Diff line number Diff line Loading @@ -151,4 +151,4 @@ class TestClass(object): bob_session = InboundSession(bob, message) plaintext = bob_session.decrypt(message) assert plaintext == "�" assert plaintext == u"�"