kernel32/tests: Fix typo.

This commit is contained in:
Frédéric Delanoy 2011-05-12 22:10:52 +02:00 committed by Alexandre Julliard
parent e3ed47bf95
commit f5304c4f73
1 changed files with 1 additions and 1 deletions

View File

@ -1348,7 +1348,7 @@ static void test_CompareStringA(void)
/* \xB9 character lies between a and b */
ret = CompareStringA(lcid, 0, "a", 1, "\xB9", 1);
todo_wine ok(ret == CSTR_LESS_THAN, "\'\\xB9\' character should be grater than \'a\'\n");
todo_wine ok(ret == CSTR_LESS_THAN, "\'\\xB9\' character should be greater than \'a\'\n");
ret = CompareStringA(lcid, 0, "\xB9", 1, "b", 1);
ok(ret == CSTR_LESS_THAN, "\'\\xB9\' character should be smaller than \'b\'\n");
}