From 6a794b1dff805ea6ee0a7c5ee600529e099a60f6 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Fri, 17 Jan 2025 22:02:43 +0200 Subject: [PATCH] Update test_async.cpp --- tests/test_async.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_async.cpp b/tests/test_async.cpp index 0de44bdb..83a22976 100644 --- a/tests/test_async.cpp +++ b/tests/test_async.cpp @@ -331,7 +331,7 @@ TEST_CASE("wait_all", "[async]") { REQUIRE(elapsed >= delay); REQUIRE(elapsed < delay * 3); // wait enough time for all messages to be processed - REQUIRE(as->wait_all(std::chrono::milliseconds(messages * delay))); + REQUIRE(as->wait_all(std::chrono::milliseconds(messages * delay + 250))); REQUIRE(as->wait_all(std::chrono::milliseconds(-10))); // no more messages REQUIRE(as->wait_all(std::chrono::milliseconds(0))); // no more messages REQUIRE(as->wait_all(std::chrono::milliseconds(10))); // no more messages