Commit a7647319 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent e637e83e
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment