Skip to content

Commit

Permalink
Move shutdown to end of integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
griswaldbrooks committed Sep 9, 2023
1 parent 9457301 commit 1deb67c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minimal_integration_test/test/basic_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ int main(int argc, char** argv) {
rclcpp::init(argc, argv);
::testing::InitGoogleTest(&argc, argv);
int result = RUN_ALL_TESTS();
rclcpp::shutdown();
RCLCPP_INFO_STREAM(rclcpp::get_logger("basic_test"),
"DONE SHUTTING DOWN ROS WITH RESULT " << result << "!!");
rclcpp::shutdown();
return result;
}

0 comments on commit 1deb67c

Please sign in to comment.