debug logs
Some checks reported errors
BlockStorage/repertory/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
2025-04-15 13:59:03 -05:00
parent d65bd6af35
commit 757c880616
2 changed files with 13 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ TYPED_TEST(winfsp_test, rename_fails_if_dest_exists_and_replace_is_false) {
utils::path::combine(dir_path, {"test_file2_5"}),
};
auto file_path3{
utils::path::combine(dir_path, {"test_file_5"}),
utils::path::combine(dir_path, {"test_file3_5"}),
};
ASSERT_TRUE(::CreateDirectoryA(dir_path.c_str(), nullptr));
@@ -157,6 +157,7 @@ TYPED_TEST(winfsp_test, rename_dir_succeeds_if_dest_does_not_exist) {
ASSERT_TRUE(::CreateDirectoryA(dir_path.c_str(), nullptr));
EXPECT_TRUE(::MoveFileExA(dir_path.c_str(), dir_path2.c_str(), 0));
fmt::println("error|{}", ::GetLastError());
EXPECT_TRUE(::RemoveDirectoryA(dir_path2.c_str()));
}