diff --git a/ddspipe_core/test/unittest/types/dynamic_types/dtypes_idl_tests.cpp b/ddspipe_core/test/unittest/types/dynamic_types/dtypes_idl_tests.cpp index 215c706c..401fe14e 100644 --- a/ddspipe_core/test/unittest/types/dynamic_types/dtypes_idl_tests.cpp +++ b/ddspipe_core/test/unittest/types/dynamic_types/dtypes_idl_tests.cpp @@ -44,9 +44,9 @@ std::string file_name_by_type( SupportedType type) { #if FASTRTPS_VERSION_MAJOR <= 2 && FASTRTPS_VERSION_MINOR < 13 - return std::string("types/v1/idls/") + to_string(type) + ".idl"; + return std::string("types/v1/idls/") + to_string(type) + ".idl"; #else - return std::string("types/v2/idls/") + to_string(type) + ".idl"; + return std::string("types/v2/idls/") + to_string(type) + ".idl"; #endif // if FASTRTPS_VERSION_MAJOR <= 2 && FASTRTPS_VERSION_MINOR < 13 } diff --git a/ddspipe_core/test/unittest/types/dynamic_types/dtypes_msg_tests.cpp b/ddspipe_core/test/unittest/types/dynamic_types/dtypes_msg_tests.cpp index fd41cf44..79f31941 100644 --- a/ddspipe_core/test/unittest/types/dynamic_types/dtypes_msg_tests.cpp +++ b/ddspipe_core/test/unittest/types/dynamic_types/dtypes_msg_tests.cpp @@ -39,9 +39,9 @@ std::string file_name_by_type( SupportedType type) { #if FASTRTPS_VERSION_MAJOR <= 2 && FASTRTPS_VERSION_MINOR < 13 - return std::string("types/v1/msgs/") + to_string(type) + ".msg"; + return std::string("types/v1/msgs/") + to_string(type) + ".msg"; #else - return std::string("types/v2/msgs/") + to_string(type) + ".msg"; + return std::string("types/v2/msgs/") + to_string(type) + ".msg"; #endif // if FASTRTPS_VERSION_MAJOR <= 2 && FASTRTPS_VERSION_MINOR < 13 }