Reactos

[KERNEL32_APITEST] Fix GetDriveType test on x64 testbot

Apparently Z: is a remote drive, so use Q: instead.

+1 -1
+1 -1
modules/rostests/apitests/kernel32/GetDriveType.c
··· 16 16 Type = GetDriveTypeW(L"\nC:\\"); 17 17 ok(Type == DRIVE_NO_ROOT_DIR, "Expected DRIVE_NO_ROOT_DIR, got %u\n", Type); 18 18 19 - Type = GetDriveTypeW(L"Z:\\"); 19 + Type = GetDriveTypeW(L"Q:\\"); 20 20 ok(Type == DRIVE_NO_ROOT_DIR, "Expected DRIVE_NO_ROOT_DIR, got %u\n", Type); 21 21 22 22 ok(GetLastError() == 0xdeadbeaf, "Expected no errors, got %lu\n", GetLastError());