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

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Vincent Povirk <vincent@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2018-01-04 15:58:51 +01:00 committed by Alexandre Julliard
parent 4a4f7e3404
commit 3939fd554f
1 changed files with 2 additions and 2 deletions

View File

@ -52,13 +52,13 @@ static void test_createHatchBrush(void)
status = GdipCreateHatchBrush(HatchStyleMin, 1, 2, &brush);
expect(Ok, status);
ok(brush != NULL, "Expected the brush to be initialized.");
ok(brush != NULL, "Expected the brush to be initialized.\n");
GdipDeleteBrush((GpBrush *)brush);
status = GdipCreateHatchBrush(HatchStyleMax, 1, 2, &brush);
expect(Ok, status);
ok(brush != NULL, "Expected the brush to be initialized.");
ok(brush != NULL, "Expected the brush to be initialized.\n");
GdipDeleteBrush((GpBrush *)brush);