From b85fa84a37514732ce7682587c9a49445f7e5284 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 1 Mar 2026 23:11:49 +0000 Subject: [PATCH] test: remove arbitrary timeouts from `test_4_lowlevel.py` They randomly fail just because CI is sometimes slow. --- python/tests/test_4_lowlevel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/tests/test_4_lowlevel.py b/python/tests/test_4_lowlevel.py index 717b9f26b..fa238154e 100644 --- a/python/tests/test_4_lowlevel.py +++ b/python/tests/test_4_lowlevel.py @@ -111,7 +111,7 @@ def test_dc_close_events(acfactory): register_global_plugin(ShutdownPlugin()) assert hasattr(ac1, "_dc_context") ac1.shutdown() - shutdowns.get(timeout=2) + shutdowns.get() def test_wrong_db(tmp_path): @@ -221,7 +221,7 @@ def test_logged_ac_process_ffi_failure(acfactory): # cause any event eg contact added/changed ac1.create_contact("something@example.org") - res = cap.get(timeout=10) + res = cap.get() assert "ac_process_ffi_event" in res assert "ZeroDivisionError" in res assert "Traceback" in res