chore: fix 1x1 chat verification

This commit is contained in:
Anastasiya Semenkevich 2024-09-24 19:24:12 +03:00 committed by Iuri Matias
parent 8086e77077
commit debae1e5f6
1 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ def test_1x1_chat(multiple_instances):
with step(f'User {user_one.name}, add reaction to the last message and verify it was added'):
occurrence = random.randint(1, 6)
message.open_context_menu_for_message().add_reaction_to_message(occurrence)
assert driver.waitFor(lambda: EMOJI_PATHES[occurrence - 1] == message.get_emoji_reactions_pathes()[0],
assert driver.waitFor(lambda: EMOJI_PATHES[occurrence - 1] == str(message.get_emoji_reactions_pathes()[0]),
timeout),\
f"Emoji reaction is not correct"
main_window.hide()
@ -155,7 +155,7 @@ def test_1x1_chat(multiple_instances):
aut_two.attach()
main_window.prepare()
message = chat.find_message_by_text(chat_message_reply, 0)
assert driver.waitFor(lambda: EMOJI_PATHES[occurrence - 1] == message.get_emoji_reactions_pathes()[0],
assert driver.waitFor(lambda: EMOJI_PATHES[occurrence - 1] == str(message.get_emoji_reactions_pathes()[0]),
timeout),\
f"Emoji reaction is not correct"
main_window.hide()