kernel32/tests: Remove extraneous check.
This commit is contained in:
parent
f35b93c655
commit
f41d0cb530
|
@ -150,8 +150,7 @@ static void test_Heap(void)
|
|||
|
||||
dwSize = HeapSize(heap, 0, mem1);
|
||||
/* should work with 0-length buffer */
|
||||
ok((dwSize >= 0) && (dwSize < 0xFFFFFFFF),
|
||||
"The size of the 0-length buffer\n");
|
||||
ok(dwSize < 0xFFFFFFFF, "The size of the 0-length buffer\n");
|
||||
ok(HeapFree(heap, 0, mem1), "Freed the 0-length buffer\n");
|
||||
|
||||
/* Check that HeapDestry works */
|
||||
|
|
Loading…
Reference in New Issue