From 3e19ca924a003a81aa6f68b3c4290517cdcaa410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Dutheillet-Lamonth=C3=A9zie?= Date: Mon, 16 Sep 2024 12:05:19 +0200 Subject: [PATCH] #8: fix post rebase invalid path error in ci --- tests/unit/utility/test_json_reader.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/utility/test_json_reader.cc b/tests/unit/utility/test_json_reader.cc index b88893b26..d33dd2828 100644 --- a/tests/unit/utility/test_json_reader.cc +++ b/tests/unit/utility/test_json_reader.cc @@ -149,7 +149,7 @@ TEST_F(JSONReaderTest, test_json_reader_metadata_attributes) { TEST_F(JSONReaderTest, test_json_reader_object_info_attributes) { std::filesystem::path p = - std::filesystem::path(SRC_DIR) / "data/lb_test_data"; + std::filesystem::path(SRC_DIR) / "data/reader_test_data"; std::string path = std::filesystem::absolute(p).string(); NodeType rank = 0; @@ -200,7 +200,7 @@ TEST_F(JSONReaderTest, test_json_reader_qoi_serializer) { TEST_F(JSONReaderTest, test_json_reader_object_work_user_defined) { std::filesystem::path p = - std::filesystem::path(SRC_DIR) / "data/lb_test_data"; + std::filesystem::path(SRC_DIR) / "data/reader_test_data"; std::string path = std::filesystem::absolute(p).string(); NodeType rank = 0;