https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7b44ae4384082a755db1823dbcec20fb1f61d2d2

commit 7b44ae4384082a755db1823dbcec20fb1f61d2d2
Author:     Timo Kreuzer <timo.kreu...@reactos.org>
AuthorDate: Thu Sep 12 12:47:16 2024 +0300
Commit:     Timo Kreuzer <timo.kreu...@reactos.org>
CommitDate: Sun Sep 15 19:28:07 2024 +0300

    [KERNEL32_APITEST] Fix GetDriveType test on x64 testbot
    
    Apparently Z: is a remote drive, so use Q: instead.
---
 modules/rostests/apitests/kernel32/GetDriveType.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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());

Reply via email to