Skip to content

Commit

Permalink
#8: fix post rebase invalid path error in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Sep 16, 2024
1 parent 0f6c187 commit 3e19ca9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/utility/test_json_reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 3e19ca9

Please sign in to comment.