kernel32/tests: Remove extraneous check.

This commit is contained in:
Gerald Pfeifer 2007-12-29 21:09:43 +01:00 committed by Alexandre Julliard
parent f35b93c655
commit f41d0cb530
1 changed files with 1 additions and 2 deletions

View File

@ -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 */