diff --git a/modules/rostests/apitests/kernel32/GetDriveType.c b/modules/rostests/apitests/kernel32/GetDriveType.c
index 784cd755e16..34ab2d496a8 100644
--- a/modules/rostests/apitests/kernel32/GetDriveType.c
+++ b/modules/rostests/apitests/kernel32/GetDriveType.c
@@ -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());