gdiplus/tests: Add the trailing '\n' to a couple of ok() calls.
This commit is contained in:
parent
e637e83ec4
commit
a764731983
|
@ -100,8 +100,8 @@ static void test_GetImageDimension(void)
|
||||||
h = -1;
|
h = -1;
|
||||||
stat = GdipGetImageDimension((GpImage*)bm,&w,&h);
|
stat = GdipGetImageDimension((GpImage*)bm,&w,&h);
|
||||||
expect(Ok, stat);
|
expect(Ok, stat);
|
||||||
ok(fabs(WIDTH - w) < 0.0001, "Width wrong");
|
ok(fabs(WIDTH - w) < 0.0001, "Width wrong\n");
|
||||||
ok(fabs(HEIGHT - h) < 0.0001, "Height wrong");
|
ok(fabs(HEIGHT - h) < 0.0001, "Height wrong\n");
|
||||||
GdipDisposeImage((GpImage*)bm);
|
GdipDisposeImage((GpImage*)bm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue