Andrey Gusev : riched20/tests: Fix a typo in ok() messages.

Alexandre Julliard julliard at winehq.org
Thu Jun 23 11:15:24 CDT 2016


Module: wine
Branch: master
Commit: 355a2162469e5efd6c622a4ebb7a73ab2f063c01
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=355a2162469e5efd6c622a4ebb7a73ab2f063c01

Author: Andrey Gusev <andrey.goosev at gmail.com>
Date:   Wed Jun 22 21:28:57 2016 +0300

riched20/tests: Fix a typo in ok() messages.

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/riched20/tests/editor.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/riched20/tests/editor.c b/dlls/riched20/tests/editor.c
index 92af700..200ce53 100644
--- a/dlls/riched20/tests/editor.c
+++ b/dlls/riched20/tests/editor.c
@@ -8123,7 +8123,7 @@ static void test_reset_default_para_fmt( void )
     SendMessageA( richedit, WM_CUT, 0, 0 );
 
     SendMessageA( richedit, EM_GETPARAFORMAT, 0, (LPARAM)&fmt );
-    ok( fmt.wAlignment == def_align, "got %d exppect %d\n", fmt.wAlignment, def_align );
+    ok( fmt.wAlignment == def_align, "got %d expect %d\n", fmt.wAlignment, def_align );
 
     DestroyWindow( richedit );
 }
@@ -8290,7 +8290,7 @@ static void test_alignment_style(void)
         SendMessageW(richedit, WM_CUT, 0, 0);
 
         SendMessageW(richedit, EM_GETPARAFORMAT, 0, (LPARAM)&pf);
-        ok(pf.wAlignment == align_mask[i], "got %d exppect %d\n", pf.wAlignment, align_mask[i]);
+        ok(pf.wAlignment == align_mask[i], "got %d expect %d\n", pf.wAlignment, align_mask[i]);
 
         DestroyWindow(richedit);
     }




More information about the wine-cvs mailing list