mshtml/tests: Add a trailing '\n' to an ok() call.

Francois Gouget fgouget at free.fr
Sun Jan 24 12:51:14 CST 2016


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/mshtml/tests/dom.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c
index 2940cee..7b5b395 100644
--- a/dlls/mshtml/tests/dom.c
+++ b/dlls/mshtml/tests/dom.c
@@ -1420,7 +1420,7 @@ static void test_get_set_attr(IHTMLDocument2 *doc)
 
     hres = IHTMLElement_getAttribute(elem, bstr, 2, &val);
     ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
-    ok(V_VT(&val) == VT_BSTR, "V_VT(val) = %u, expected VT_BSTR", V_VT(&val));
+    ok(V_VT(&val) == VT_BSTR, "V_VT(val) = %u, expected VT_BSTR\n", V_VT(&val));
     ok(!strcmp_wa(V_BSTR(&val), "null"), "V_BSTR(val) = %s, expected \"null\"\n", wine_dbgstr_w(V_BSTR(&val)));
     VariantClear(&val);
 
-- 
2.7.0.rc3




More information about the wine-patches mailing list