Module: wine Branch: master Commit: 3939fd554fe7c16ca44c889c8ca0da6566f6f4a7 URL: https://source.winehq.org/git/wine.git/?a=commit;h=3939fd554fe7c16ca44c889c8...
Author: Francois Gouget fgouget@free.fr Date: Thu Jan 4 15:58:51 2018 +0100
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
---
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 9be500d..0451948 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);