Skip to content

Commit

Permalink
Fix get_type_description service test failures
Browse files Browse the repository at this point in the history
Signed-off-by: Hans-Joachim Krauch <achim.krauch@gmail.com>
  • Loading branch information
achim-k committed Apr 10, 2023
1 parent f8749e9 commit 3d1ea76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rcl/test/rcl/test_get_type_description_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ TEST_F(CLASSNAME(TestGetTypeDescSrvEnabledFixture, RMW_IMPLEMENTATION), test_ser
});
rosidl_runtime_c__String__assign(&client_request.type_hash, type_hash_str);
rosidl_runtime_c__String__assign(&client_request.type_name, GET_TYPE_DESCRIPTION_SRV_TYPE_NAME);
client_request.include_type_sources = true;
client_request.include_type_sources = false;

// Send the request.
int64_t sequence_number;
Expand All @@ -264,7 +264,7 @@ TEST_F(CLASSNAME(TestGetTypeDescSrvEnabledFixture, RMW_IMPLEMENTATION), test_ser
type_description_interfaces__srv__GetTypeDescription_Response__fini(&client_response);
}

/* Test calling ~/get_type_description service with invalid hash service. */
/* Test calling ~/get_type_description service with invalid hash. */
TEST_F(
CLASSNAME(
TestGetTypeDescSrvEnabledFixture,
Expand Down Expand Up @@ -294,7 +294,7 @@ TEST_F(
// Fill the request.
rosidl_runtime_c__String__assign(&client_request.type_hash, "foo");
rosidl_runtime_c__String__assign(&client_request.type_name, "bar");
client_request.include_type_sources = true;
client_request.include_type_sources = false;

// Send the request.
int64_t sequence_number;
Expand Down

0 comments on commit 3d1ea76

Please sign in to comment.