From 5b5c6a9c31b680cdba83346ddd92287e027852a1 Mon Sep 17 00:00:00 2001 From: Hocuri Date: Fri, 23 Oct 2020 15:15:51 +0200 Subject: [PATCH] Alex' review --- python/tests/test_account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/test_account.py b/python/tests/test_account.py index 45679e3ff..a9cbea671 100644 --- a/python/tests/test_account.py +++ b/python/tests/test_account.py @@ -954,11 +954,11 @@ class TestOnlineAccount: msg_reply.quote = msg2 private_chat = ac2.create_chat(ac1) - #msg_reply = private_chat.prepare_message(msg_reply) private_chat.send_msg(msg_reply) private_chat1 = ac1.create_chat(ac2) msg_reply1 = ac1._evtracker.wait_next_incoming_message() + assert msg_reply1.quoted_text == "hello" assert not msg_reply1.chat.is_group() assert msg_reply1.chat.id == private_chat1.id