Skip to content

Commit

Permalink
camera: fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
julianoes committed Aug 21, 2018
1 parent 4f55529 commit aac5d45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/camera_settings.cpp
Expand Up @@ -296,7 +296,7 @@ receive_possible_setting_options(bool &subscription_called,
EXPECT_TRUE(setting_options.options.size() > 0);
for (auto &option : setting_options.options) {
LogDebug() << " - '" << option.option_description << "'";
if (setting_options.setting_id == "Shutter Speed" && option.option_id == "0.0025") {
if (setting_options.setting_id == "CAM_SHUTTERSPD" && option.option_id == "0.0025") {
EXPECT_STREQ(option.option_description.c_str(), "1/400");
} else if (setting_options.setting_id == "CAM_WBMODE" && option.option_id == "2") {
EXPECT_STREQ(option.option_description.c_str(), "Sunrise");
Expand Down

0 comments on commit aac5d45

Please sign in to comment.