From d3a61f4aadf1c9d02cb0f0a143e3cb2f5edc269f Mon Sep 17 00:00:00 2001 From: Anh Nguyen Date: Thu, 13 Jun 2024 10:55:29 +0700 Subject: [PATCH] Fixing CI Signed-off-by: Anh Nguyen --- map/map_loader/test/test_replace_with_absolute_path.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/map/map_loader/test/test_replace_with_absolute_path.cpp b/map/map_loader/test/test_replace_with_absolute_path.cpp index 8f6a1ea6a48d6..f61dd188f0679 100644 --- a/map/map_loader/test/test_replace_with_absolute_path.cpp +++ b/map/map_loader/test/test_replace_with_absolute_path.cpp @@ -36,8 +36,8 @@ TEST(ReplaceWithAbsolutePathTest, BasicFunctionality) {"/home/user/pcd/file2.pcd", {{-1, -2, -3}, {-4, -5, -6}}}, }; - std::set missing_pcds; - auto result = replaceWithAbsolutePath(pcd_metadata_path, pcd_paths, missing_pcds); + std::set missing_pcd_names; + auto result = replaceWithAbsolutePath(pcd_metadata_path, pcd_paths, missing_pcd_names); ASSERT_THAT(result, ContainerEq(expected)); } @@ -54,9 +54,9 @@ TEST(ReplaceWithAbsolutePathTest, NoMatchingFiles) }; std::map expected = {}; - std::set missing_pcds; + std::set missing_pcd_names; - auto result = replaceWithAbsolutePath(pcd_metadata_path, pcd_paths, missing_pcds); + auto result = replaceWithAbsolutePath(pcd_metadata_path, pcd_paths, missing_pcd_names); ASSERT_THAT(result, ContainerEq(expected)); }