mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 16:31:07 +08:00
[KERNEL32_APITEST] Fix GetDriveType test on x64 testbot
Apparently Z: is a remote drive, so use Q: instead.
This commit is contained in:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user