Skip to content

Commit b51fe30

Browse files
committed
Update service client graph test
Signed-off-by: Jacob Perron <[email protected]>
1 parent 4a30d27 commit b51fe30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rcl/test/rcl/test_graph.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1080,12 +1080,12 @@ TEST_F(NodeGraphMultiNodeFixture, test_node_info_clients)
10801080
auto ts = ROSIDL_GET_SRV_TYPE_SUPPORT(test_msgs, srv, BasicTypes);
10811081
ret = rcl_client_init(&client, this->node_ptr, ts, service_name, &client_options);
10821082
ASSERT_EQ(RCL_RET_OK, ret) << rcl_get_error_string().str;
1083-
VerifySubsystemCount(expected_node_state{1, 0, 1}, expected_node_state{1, 0, 0});
1083+
VerifySubsystemCount(expected_node_state{1, 0, 0, 1}, expected_node_state{1, 0, 0, 0});
10841084

10851085
// Destroy client
10861086
ret = rcl_client_fini(&client, this->node_ptr);
10871087
EXPECT_EQ(RCL_RET_OK, ret) << rcl_get_error_string().str;
1088-
VerifySubsystemCount(expected_node_state{1, 0, 0}, expected_node_state{1, 0, 0});
1088+
VerifySubsystemCount(expected_node_state{1, 0, 0, 0}, expected_node_state{1, 0, 0, 0});
10891089
}
10901090

10911091
/*

0 commit comments

Comments
 (0)