From 5d0c2830e1094d42b643e0807a9ba7d64f1e6040 Mon Sep 17 00:00:00 2001 From: Aya Hassan Date: Thu, 7 May 2026 13:34:57 +0200 Subject: [PATCH] fix the timeout review comment --- tests/wrappers_tests/test_send_e2e_part1.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/wrappers_tests/test_send_e2e_part1.py b/tests/wrappers_tests/test_send_e2e_part1.py index 597128c6e..51e845078 100644 --- a/tests/wrappers_tests/test_send_e2e_part1.py +++ b/tests/wrappers_tests/test_send_e2e_part1.py @@ -122,10 +122,10 @@ class TestSendBeforeRelay(StepsStore): sent_event = wait_for_sent( collector=sender_collector, request_id=request_id, - timeout_s=NO_SENT_OBSERVATION_S, + timeout_s=SENT_TIMEOUT_S, ) assert sent_event is not None, ( - f"No MessageSentEvent received within {NO_SENT_OBSERVATION_S}s " + f"No MessageSentEvent received within {SENT_TIMEOUT_S}s " f"from a store-enabled relay peer. Collected events: {sender_collector.events}" )