avoid callback_group deprecation (#1108)

Signed-off-by: Karsten Knese <karsten@openrobotics.org>
This commit is contained in:
Karsten Knese 2020-05-08 09:04:38 -07:00 committed by GitHub
parent 4d1de47df3
commit e24f402238
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -536,7 +536,7 @@ TEST_F(TestDefaultStateMachine, test_callback_groups) {
EXPECT_EQ(groups.size(), 1u);
auto group = test_node->create_callback_group(
rclcpp::callback_group::CallbackGroupType::MutuallyExclusive);
rclcpp::CallbackGroupType::MutuallyExclusive);
EXPECT_NE(nullptr, group);
groups = test_node->get_callback_groups();