From 521fa58b75b544996f1d622d0092e8bb4cb5d61b Mon Sep 17 00:00:00 2001 From: holger krekel Date: Fri, 29 Apr 2022 10:00:43 +0200 Subject: [PATCH] remove timeout --- python/tests/test_account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/test_account.py b/python/tests/test_account.py index a8d797bd4..cbe5bceab 100644 --- a/python/tests/test_account.py +++ b/python/tests/test_account.py @@ -2294,7 +2294,7 @@ class TestOnlineAccount: ac1.direct_imap.delete("1:*", expunge=False) ac1.start_io() - for ev in ac1._evtracker.iter_events(timeout=60): + for ev in ac1._evtracker.iter_events(): if ev.name == "DC_EVENT_MSGS_CHANGED": pytest.fail("A deleted message was shown to the user")