Module: wine Branch: master Commit: a76473198321899bd28f237baa6d34d7d4608bb5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a76473198321899bd28f237baa...
Author: Francois Gouget fgouget@free.fr Date: Sat Mar 1 21:13:09 2008 +0100
gdiplus/tests: Add the trailing '\n' to a couple of ok() calls.
---
dlls/gdiplus/tests/image.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/gdiplus/tests/image.c b/dlls/gdiplus/tests/image.c index d0959e5..0918f9d 100644 --- a/dlls/gdiplus/tests/image.c +++ b/dlls/gdiplus/tests/image.c @@ -100,8 +100,8 @@ static void test_GetImageDimension(void) h = -1; stat = GdipGetImageDimension((GpImage*)bm,&w,&h); expect(Ok, stat); - ok(fabs(WIDTH - w) < 0.0001, "Width wrong"); - ok(fabs(HEIGHT - h) < 0.0001, "Height wrong"); + ok(fabs(WIDTH - w) < 0.0001, "Width wrong\n"); + ok(fabs(HEIGHT - h) < 0.0001, "Height wrong\n"); GdipDisposeImage((GpImage*)bm); }