Francois Gouget : comctl32/tests: Add a trailing '\n' to ok() calls.

Alexandre Julliard julliard at winehq.org
Wed Aug 19 11:31:25 CDT 2009


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed Aug 19 09:12:30 2009 +0200

comctl32/tests: Add a trailing '\n' to ok() calls.

---

 dlls/comctl32/tests/imagelist.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/comctl32/tests/imagelist.c b/dlls/comctl32/tests/imagelist.c
index e1ad8da..9bb0253 100644
--- a/dlls/comctl32/tests/imagelist.c
+++ b/dlls/comctl32/tests/imagelist.c
@@ -1014,14 +1014,14 @@ static void test_shell_imagelist(void)
         return;
 
     IImageList_GetImageCount(iml, &out);
-    todo_wine ok(out > 0, "IImageList_GetImageCount returned out <= 0");
+    todo_wine ok(out > 0, "IImageList_GetImageCount returned out <= 0\n");
 
     /* right and bottom should be 32x32 for large icons, or 48x48 if larger
        icons enabled in control panel */
     IImageList_GetImageRect(iml, 0, &rect);
     todo_wine ok((((rect.right == 32) && (rect.bottom == 32)) ||
                   ((rect.right == 48) && (rect.bottom == 48))),
-                 "IImageList_GetImageRect returned r:%d,b:%d",
+                 "IImageList_GetImageRect returned r:%d,b:%d\n",
                  rect.right, rect.bottom);
 
     IImageList_Release(iml);




More information about the wine-cvs mailing list