File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -156,8 +156,12 @@ class RetracingPathTest : public ::testing::Test
156
156
{
157
157
for (int i = 0 ; i <= 10 ; ++i) {target_path.poses .push_back (createPose (i, 0.0 ));}
158
158
for (int i = 9 ; i >= 0 ; --i) {target_path.poses .push_back (createPose (i, 0.0 ));}
159
- for (int i = 0 ; i <= 10 ; ++i) {robot_trajectory.push_back (createPose (i, 0.5 ));}
160
- for (int i = 9 ; i >= 0 ; --i) {robot_trajectory.push_back (createPose (i, 0.5 ));}
159
+ for (int i = 0 ; i <= 10 ; ++i) {
160
+ robot_trajectory.push_back (createPose (i, 0.5 ));
161
+ }
162
+ for (int i = 9 ; i >= 0 ; --i) {
163
+ robot_trajectory.push_back (createPose (i, 0.5 ));
164
+ }
161
165
}
162
166
nav_msgs::msg::Path target_path;
163
167
std::vector<geometry_msgs::msg::PoseStamped> robot_trajectory;
You can’t perform that action at this time.
0 commit comments