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

Francois Gouget fgouget at free.fr
Fri Aug 27 05:46:39 CDT 2021


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/kernel32/tests/atom.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/kernel32/tests/atom.c b/dlls/kernel32/tests/atom.c
index ad9e91ba257..4796d41d23d 100644
--- a/dlls/kernel32/tests/atom.c
+++ b/dlls/kernel32/tests/atom.c
@@ -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" );
     }
 
-- 
2.20.1




More information about the wine-devel mailing list