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

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-08-27 12:46:39 +02:00 committed by Alexandre Julliard
parent 463850baa6
commit eae25715f5
1 changed files with 2 additions and 2 deletions

View File

@ -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" );
}