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

Francois Gouget fgouget at free.fr
Thu Jan 4 08:58:51 CST 2018


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 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);
 
-- 
2.15.1




More information about the wine-patches mailing list