[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; break;
} }
} }
ok(i != MAX_PATH, "String was not null terminated!\n"); ok(i == MAX_PATH, "String was null terminated!\n");
ok(i >= Len, "Buffer has not been overruned\n"); ok(i >= Len, "Buffer has not been overrun\n");
} }
START_TEST(GetVolumeInformation) START_TEST(GetVolumeInformation)