Skip to content

Commit bd6941d

Browse files
committed
Fix get_type_description service test failures
Signed-off-by: Hans-Joachim Krauch <[email protected]>
1 parent 1cf147f commit bd6941d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rcl/test/rcl/test_get_type_description_service.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ TEST_F(CLASSNAME(TestGetTypeDescSrvEnabledFixture, RMW_IMPLEMENTATION), test_ser
242242
});
243243
rosidl_runtime_c__String__assign(&client_request.type_hash, type_hash_str);
244244
rosidl_runtime_c__String__assign(&client_request.type_name, GET_TYPE_DESCRIPTION_SRV_TYPE_NAME);
245-
client_request.include_type_sources = true;
245+
client_request.include_type_sources = false;
246246

247247
// Send the request.
248248
int64_t sequence_number;
@@ -264,7 +264,7 @@ TEST_F(CLASSNAME(TestGetTypeDescSrvEnabledFixture, RMW_IMPLEMENTATION), test_ser
264264
type_description_interfaces__srv__GetTypeDescription_Response__fini(&client_response);
265265
}
266266

267-
/* Test calling ~/get_type_description service with invalid hash service. */
267+
/* Test calling ~/get_type_description service with invalid hash. */
268268
TEST_F(
269269
CLASSNAME(
270270
TestGetTypeDescSrvEnabledFixture,
@@ -294,7 +294,7 @@ TEST_F(
294294
// Fill the request.
295295
rosidl_runtime_c__String__assign(&client_request.type_hash, "foo");
296296
rosidl_runtime_c__String__assign(&client_request.type_name, "bar");
297-
client_request.include_type_sources = true;
297+
client_request.include_type_sources = false;
298298

299299
// Send the request.
300300
int64_t sequence_number;

0 commit comments

Comments
 (0)