We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1774495 commit c729fcdCopy full SHA for c729fcd
1 file changed
src/agnocastlib/test/integration/test_agnocast_create_timer.cpp
@@ -14,16 +14,11 @@ using namespace std::chrono_literals;
14
class CreateTimerTest : public ::testing::Test
15
{
16
protected:
17
- void SetUp() override { rclcpp::init(0, nullptr); }
18
-
19
void TearDown() override
20
21
// Clean up any timer info registered during tests
22
- {
23
- std::lock_guard<std::mutex> lock(agnocast::id2_timer_info_mtx);
24
- agnocast::id2_timer_info.clear();
25
- }
26
- rclcpp::shutdown();
+ std::lock_guard<std::mutex> lock(agnocast::id2_timer_info_mtx);
+ agnocast::id2_timer_info.clear();
27
}
28
};
29
0 commit comments