Commit eae25715 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

kernel32/tests: Fix a couple of ASCII / ANSI mixups in ok() messages.

parent 463850ba
......@@ -86,7 +86,7 @@ static void test_add_atom(void)
if (unicode_OS)
{
ok( w_atom == atom, "Unicode atom does not match ASCII\n" );
ok( w_atom == atom, "Unicode atom does not match ANSI one\n" );
ok( GetLastError() == 0xdeadbeef, "GlobalAddAtomW set last error\n" );
}
......@@ -344,7 +344,7 @@ static void test_local_add_atom(void)
if (unicode_OS)
{
ok( w_atom == atom, "Unicode atom does not match ASCII\n" );
ok( w_atom == atom, "Unicode atom does not match ANSI one\n" );
ok( GetLastError() == 0xdeadbeef, "AddAtomW set last error\n" );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment