[KERNEL32_APITEST] Fix GetDriveType test on x64 testbot

Apparently Z: is a remote drive, so use Q: instead.
This commit is contained in:
Timo Kreuzer 2024-09-12 12:47:16 +03:00
parent 4d10ead793
commit 7b44ae4384

View file

@ -16,7 +16,7 @@ START_TEST(GetDriveType)
Type = GetDriveTypeW(L"\nC:\\");
ok(Type == DRIVE_NO_ROOT_DIR, "Expected DRIVE_NO_ROOT_DIR, got %u\n", Type);
Type = GetDriveTypeW(L"Z:\\");
Type = GetDriveTypeW(L"Q:\\");
ok(Type == DRIVE_NO_ROOT_DIR, "Expected DRIVE_NO_ROOT_DIR, got %u\n", Type);
ok(GetLastError() == 0xdeadbeaf, "Expected no errors, got %lu\n", GetLastError());