winfsp unit tests and fixes
Some checks failed
BlockStorage/repertory/pipeline/head There was a failure building this commit

This commit is contained in:
Scott E. Graves 2024-11-09 09:19:01 -06:00
parent 3d9ed2dfe8
commit 1fe7b68f0e

View File

@ -91,7 +91,7 @@ TYPED_TEST(winfsp_test, volume_can_get_file_type) {
nullptr, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, nullptr);
ASSERT_NE(INVALID_HANDLE_VALUE, handle);
EXPECT_EQ(FILE_TYPE_REMOTE, ::GetFileType(handle));
EXPECT_EQ(FILE_TYPE_DISK, ::GetFileType(handle));
::CloseHandle(handle);
}