Skip to content

Commit

Permalink
test: no timeout in SetupPlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
missytake committed Jan 17, 2024
1 parent 7f7f42d commit bbc6feb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/src/deltachat/testplugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ def ac_member_added(self, chat: deltachat.Chat, contact, actor, message):
chat = ac1.create_group_chat("Protected Group", verified=True)
qr = chat.get_join_qr()
ac2.qr_join_chat(qr)
setupplugin.member_added.wait(timeout=30)
setupplugin.member_added.wait()
msg = ac2.wait_next_incoming_message()
assert msg.text == "Messages are guaranteed to be end-to-end encrypted from now on."
msg = ac2.wait_next_incoming_message()
Expand Down
2 changes: 1 addition & 1 deletion python/tests/test_1_online.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ def test_forward_encrypted_to_unencrypted(acfactory, lp):
assert msg.text == txt
assert msg.is_encrypted()

lp.sec("ac2: forward message to ac3 unencrypted ")
lp.sec("ac2: forward message to ac3 unencrypted")
unencrypted_chat = ac2.create_chat(ac3)
msg_id = msg.id
msg2 = unencrypted_chat.send_msg(msg)
Expand Down

0 comments on commit bbc6feb

Please sign in to comment.