mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-05 02:29:28 +02:00
Finished the removal of .increation files
This commit is contained in:
parent
b282e62325
commit
ef179c4022
9 changed files with 178 additions and 13 deletions
|
@ -130,3 +130,10 @@ def wait_successful_IMAP_SMTP_connection(account):
|
|||
if evt_name == "DC_EVENT_SMTP_CONNECTED":
|
||||
smtp_ok = True
|
||||
print("** IMAP and SMTP logins successful", account)
|
||||
|
||||
def wait_msgs_changed(account, chat_id, msg_id = None):
|
||||
ev = account._evlogger.get_matching("DC_EVENT_MSGS_CHANGED")
|
||||
assert ev[1] == chat_id
|
||||
if msg_id is not None:
|
||||
assert ev[2] == msg_id
|
||||
return ev[2]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue