From 3939fd554fe7c16ca44c889c8ca0da6566f6f4a7 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 4 Jan 2018 15:58:51 +0100 Subject: [PATCH] gdiplus/tests: Add a trailing '\n' to ok() calls. Signed-off-by: Francois Gouget Signed-off-by: Vincent Povirk Signed-off-by: Alexandre Julliard --- dlls/gdiplus/tests/brush.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/gdiplus/tests/brush.c b/dlls/gdiplus/tests/brush.c index 9be500d99d8..0451948175b 100644 --- a/dlls/gdiplus/tests/brush.c +++ b/dlls/gdiplus/tests/brush.c @@ -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);