1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-22 10:35:54 +00:00

[KERNEL32_APITEST] Fix a test that fails on Server 2003 and Windows 10

This commit is contained in:
Timo Kreuzer 2019-09-08 11:34:00 +02:00
parent e8ab2736e7
commit 1bcc69b1a0

View file

@ -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)