mirror of
https://github.com/reactos/reactos.git
synced 2025-05-18 16:51:18 +00:00
[KERNEL32_APITEST] Fix a test that fails on Server 2003 and Windows 10
This commit is contained in:
parent
e8ab2736e7
commit
1bcc69b1a0
1 changed files with 2 additions and 2 deletions
|
@ -113,8 +113,8 @@ TestGetVolumeInformationW(VOID)
|
|||
break;
|
||||
}
|
||||
}
|
||||
ok(i != MAX_PATH, "String was not null terminated!\n");
|
||||
ok(i >= Len, "Buffer has not been overruned\n");
|
||||
ok(i == MAX_PATH, "String was null terminated!\n");
|
||||
ok(i >= Len, "Buffer has not been overrun\n");
|
||||
}
|
||||
|
||||
START_TEST(GetVolumeInformation)
|
||||
|
|
Loading…
Reference in a new issue