From ca55dcb370e95fc4574e5a3b71fb89b5662a6ec0 Mon Sep 17 00:00:00 2001 From: Jacob Perron Date: Thu, 18 Jul 2019 14:30:24 -0700 Subject: [PATCH] Fix typo in test fixture tear down method name Signed-off-by: Jacob Perron --- rclcpp_action/test/test_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rclcpp_action/test/test_client.cpp b/rclcpp_action/test/test_client.cpp index 117ddea241..1ccc2e745f 100644 --- a/rclcpp_action/test/test_client.cpp +++ b/rclcpp_action/test/test_client.cpp @@ -219,7 +219,7 @@ class TestClient : public ::testing::Test ASSERT_EQ(RCL_RET_OK, rcl_set_ros_time_override(clock.get_clock_handle(), RCL_S_TO_NS(1))); } - void Teardown() + void TearDown() { status_publisher.reset(); feedback_publisher.reset();