Skip to content

Commit bbc6feb

Browse files
committed
test: no timeout in SetupPlugin
1 parent 7f7f42d commit bbc6feb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/src/deltachat/testplugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ def ac_member_added(self, chat: deltachat.Chat, contact, actor, message):
605605
chat = ac1.create_group_chat("Protected Group", verified=True)
606606
qr = chat.get_join_qr()
607607
ac2.qr_join_chat(qr)
608-
setupplugin.member_added.wait(timeout=30)
608+
setupplugin.member_added.wait()
609609
msg = ac2.wait_next_incoming_message()
610610
assert msg.text == "Messages are guaranteed to be end-to-end encrypted from now on."
611611
msg = ac2.wait_next_incoming_message()

python/tests/test_1_online.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ def test_forward_encrypted_to_unencrypted(acfactory, lp):
509509
assert msg.text == txt
510510
assert msg.is_encrypted()
511511

512-
lp.sec("ac2: forward message to ac3 unencrypted ")
512+
lp.sec("ac2: forward message to ac3 unencrypted")
513513
unencrypted_chat = ac2.create_chat(ac3)
514514
msg_id = msg.id
515515
msg2 = unencrypted_chat.send_msg(msg)

0 commit comments

Comments
 (0)