From f81f7f474961b1c19163f3d6e645433a0b88bd30 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 4 Jan 2018 15:58:40 +0100 Subject: [PATCH] mlang/tests: Add a trailing '\n' to ok() calls. Signed-off-by: Francois Gouget Signed-off-by: Alexandre Julliard --- dlls/mlang/tests/mlang.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/mlang/tests/mlang.c b/dlls/mlang/tests/mlang.c index 9727b4fbbfb..bcb2fd07db9 100644 --- a/dlls/mlang/tests/mlang.c +++ b/dlls/mlang/tests/mlang.c @@ -2683,12 +2683,12 @@ static void test_MapFont(IMLangFontLink *font_link, IMLangFontLink2 *font_link2) ok(ret == S_OK, "MapFont() failed, hr %#x.\n", ret); ret = IMLangFontLink2_MapFont(font_link2, hdc, codepages, 0, &font2); ok(ret == S_OK, "MapFont() failed, hr %#x.\n", ret); - ok(font1 != NULL && font2 != NULL, "expected !NULL/!NULL, got %p/%p", font1, font2); - ok(font1 == font2, "expected equal, got not equal"); + ok(font1 != NULL && font2 != NULL, "expected !NULL/!NULL, got %p/%p\n", font1, font2); + ok(font1 == font2, "expected equal, got not equal\n"); IMLangFontLink_GetFontCodePages(font_link, hdc, font1, &font_codepages); ok((codepages & (~font_codepages)) != 0 && (codepages & font_codepages) != 0, - "code pages of font is incorrect"); + "code pages of font is incorrect\n"); IMLangFontLink_ResetFontMapping(font_link); IMLangFontLink2_ResetFontMapping(font_link2); -- 2.11.4.GIT