From cc93a465cfa29f6edc46e5b220108a371928aa1f Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Thu, 28 Nov 2024 13:48:31 +1300 Subject: [PATCH] system_tests: slow it down for macOS --- src/system_tests/camera_settings.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/system_tests/camera_settings.cpp b/src/system_tests/camera_settings.cpp index 8b361ad20..0dbafd379 100644 --- a/src/system_tests/camera_settings.cpp +++ b/src/system_tests/camera_settings.cpp @@ -213,7 +213,7 @@ TEST(SystemTest, CameraSettingsAsync) camera.set_setting(camera.camera_list().cameras[0].component_id, setting), Camera::Result::Success); - std::this_thread::sleep_for(std::chrono::milliseconds(100)); + std::this_thread::sleep_for(std::chrono::milliseconds(500)); EXPECT_TRUE(found_wb_temp); bool found_exp_absolute = false; @@ -233,6 +233,6 @@ TEST(SystemTest, CameraSettingsAsync) camera.set_setting(camera.camera_list().cameras[0].component_id, setting), Camera::Result::Success); - std::this_thread::sleep_for(std::chrono::milliseconds(100)); + std::this_thread::sleep_for(std::chrono::milliseconds(500)); EXPECT_TRUE(found_exp_absolute); -} \ No newline at end of file +}