From 1ec41fb969a59f18a433baa43000c208f6969055 Mon Sep 17 00:00:00 2001 From: Sai Kishor Kothakota Date: Wed, 28 Jun 2023 10:32:21 +0200 Subject: [PATCH] possible fixes for the tests --- controller_manager/test/controller_manager_test_common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller_manager/test/controller_manager_test_common.hpp b/controller_manager/test/controller_manager_test_common.hpp index 78c3fcb06b5..664e71f5200 100644 --- a/controller_manager/test/controller_manager_test_common.hpp +++ b/controller_manager/test/controller_manager_test_common.hpp @@ -187,7 +187,7 @@ class TestControllerManagerSrvs executor_spin_future_ = std::async(std::launch::async, [this]() -> void { executor_->spin(); }); // This sleep is needed to prevent a too fast test from ending before the // executor has begun to spin, which causes it to hang - std::this_thread::sleep_for(std::chrono::milliseconds(50)); + std::this_thread::sleep_for(std::chrono::milliseconds(100)); } // FIXME: This can be deleted!