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

Alexandre Julliard julliard at winehq.org
Fri Aug 27 15:03:33 CDT 2021


Module: wine
Branch: master
Commit: eae25715f5d2dda369514f94d9e885cec613735e
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=eae25715f5d2dda369514f94d9e885cec613735e

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri Aug 27 12:46:39 2021 +0200

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

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

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




More information about the wine-cvs mailing list