mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 01:43:02 +00:00
[KERNEL32_APITEST] Fix GetDriveType test on x64 testbot
Apparently Z: is a remote drive, so use Q: instead.
This commit is contained in:
parent
4d10ead793
commit
7b44ae4384
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ START_TEST(GetDriveType)
|
||||||
Type = GetDriveTypeW(L"\nC:\\");
|
Type = GetDriveTypeW(L"\nC:\\");
|
||||||
ok(Type == DRIVE_NO_ROOT_DIR, "Expected DRIVE_NO_ROOT_DIR, got %u\n", Type);
|
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(Type == DRIVE_NO_ROOT_DIR, "Expected DRIVE_NO_ROOT_DIR, got %u\n", Type);
|
||||||
|
|
||||||
ok(GetLastError() == 0xdeadbeaf, "Expected no errors, got %lu\n", GetLastError());
|
ok(GetLastError() == 0xdeadbeaf, "Expected no errors, got %lu\n", GetLastError());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue