gdiplus/tests: Add the trailing '\n' to a couple of ok() calls.

This commit is contained in:
Francois Gouget 2008-03-01 21:13:09 +01:00 committed by Alexandre Julliard
parent e637e83ec4
commit a764731983
1 changed files with 2 additions and 2 deletions

View File

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