Skip to content

Commit

Permalink
system_tests: slow it down for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
julianoes committed Nov 28, 2024
1 parent b41070a commit cc93a46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/system_tests/camera_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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);
}
}

0 comments on commit cc93a46

Please sign in to comment.