Skip to content

Commit

Permalink
Fixed for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Ligocki committed May 13, 2021
1 parent 59fc4f2 commit aaab585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/integration_tests/mission_takeoff_land.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ void do_mission_with_takeoff_and_land(float mission_altitude_m)
std::this_thread::sleep_for(std::chrono::seconds(1));
}
for (int i = 0; i < 8; i++) {
ASSERT_EQ(landed_states_template, landed_states);
ASSERT_EQ(landed_states_template.at(i), landed_states.at(i));
}

LogInfo() << "Disarmed, exiting.";
Expand Down

0 comments on commit aaab585

Please sign in to comment.