From a8d53301e3b02a8e48c9093b895ea0f086602569 Mon Sep 17 00:00:00 2001 From: Hocuri Date: Thu, 28 May 2020 13:24:33 +0200 Subject: [PATCH] Adapt to new refactorings --- python/tests/test_account.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/tests/test_account.py b/python/tests/test_account.py index c6176b23f..05b308ebb 100644 --- a/python/tests/test_account.py +++ b/python/tests/test_account.py @@ -7,8 +7,6 @@ from deltachat import const, Account from deltachat.message import Message from deltachat.hookspec import account_hookimpl from datetime import datetime, timedelta -from conftest import (wait_configuration_progress, - wait_securejoin_inviter_progress) from deltachat import direct_imap @@ -643,8 +641,10 @@ class TestOnlineAccount: ac2 = acfactory.get_online_configuring_account() ac2.set_config("mvbox_move", "1") - wait_configuration_progress(ac1, 1000) - wait_configuration_progress(ac2, 1000) + ac1.wait_configure_finish() + ac1.start_io() + ac2.wait_configure_finish() + ac2.start_io() imap2 = acfactory.make_direct_imap(ac2, direct_imap.MVBOX) imap2.mark_all_read()