From 8281c14d7ea5878b87bb9a80bda045a329dfc50e Mon Sep 17 00:00:00 2001 From: Alexander Bushnev Date: Wed, 15 Jan 2025 18:28:15 +0100 Subject: [PATCH] Adjust timeout --- tests/z_api_matching_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/z_api_matching_test.c b/tests/z_api_matching_test.c index dd440828d..f28a2d527 100644 --- a/tests/z_api_matching_test.c +++ b/tests/z_api_matching_test.c @@ -142,15 +142,15 @@ void test_matching_sub(bool background) { assert_ok(z_declare_subscriber(z_session_loan(&s2), &sub, z_view_keyexpr_loan(&k_sub), z_closure_sample_move(&callback), NULL)); - _context_wait(&context, MATCH, 10); + _context_wait(&context, MATCH, 30); z_subscriber_drop(z_subscriber_move(&sub)); - _context_wait(&context, UNMATCH, 10); + _context_wait(&context, UNMATCH, 30); z_publisher_drop(z_publisher_move(&pub)); - _context_wait(&context, DROP, 10); + _context_wait(&context, DROP, 30); if (!background) { z_matching_listener_drop(z_matching_listener_move(&matching_listener));