kernel: Change failing to test to show it doesn't have anything to do

with embedded NULLs.
This commit is contained in:
Juan Lang 2006-06-23 00:14:05 -07:00 committed by Alexandre Julliard
parent e239953e51
commit 91ac4b5534
1 changed files with 2 additions and 2 deletions

View File

@ -941,8 +941,8 @@ static void test_CompareStringA(void)
ret = CompareStringA(lcid, 0, "a\0b", 4, "a", 2); ret = CompareStringA(lcid, 0, "a\0b", 4, "a", 2);
ok(ret == 3, "a\\0b vs a expected 3, got %d\n", ret); ok(ret == 3, "a\\0b vs a expected 3, got %d\n", ret);
ret = CompareStringA(lcid, 0, "\1\0\2", 4, "\1\0\1", 4); ret = CompareStringA(lcid, 0, "\2", 2, "\1", 2);
todo_wine ok(ret != 2, "\\1\\0\\2 vs \\1\\0\\1 expected unequal\n"); todo_wine ok(ret != 2, "\\2 vs \\1 expected unequal\n");
} }
static void test_LCMapStringA(void) static void test_LCMapStringA(void)