File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class ServerShim : public opennav_coverage::CoverageServer
41
41
void configure (const rclcpp_lifecycle::State & state)
42
42
{
43
43
this ->on_configure (state);
44
- cartesian_frame_ = true ; // Test files in GPS
44
+ cartesian_frame_ = false ; // Test files in GPS
45
45
}
46
46
void activate (const rclcpp_lifecycle::State & state) {this ->on_activate (state);}
47
47
void deactivate (const rclcpp_lifecycle::State & state) {this ->on_deactivate (state);}
@@ -98,7 +98,7 @@ TEST(ServerTest, testServerTransactions)
98
98
auto goal_msg = opennav_coverage_msgs::action::ComputeCoveragePath::Goal ();
99
99
goal_msg.use_gml_file = true ; // Use file
100
100
goal_msg.gml_field =
101
- ament_index_cpp::get_package_share_directory (" opennav_coverage" ) + " /cartesian_test_field .xml" ;
101
+ ament_index_cpp::get_package_share_directory (" opennav_coverage" ) + " /test_field .xml" ;
102
102
103
103
auto future_goal_handle = action_client->async_send_goal (goal_msg);
104
104
EXPECT_EQ (
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ def main():
125
125
goal .generate_path = True
126
126
127
127
goal .use_gml_file = True
128
- goal .gml_field = get_package_share_directory ('opennav_coverage' ) + '/cartesian_test_field .xml'
128
+ goal .gml_field = get_package_share_directory ('opennav_coverage' ) + '/test_field .xml'
129
129
goal .gml_field_id = 0
130
130
131
131
# Cartesian coordinates corresponding to a similar XML as test_field.xml
You can’t perform that action at this time.
0 commit comments