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

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jan 25 09:27:58 CST 2016


Module: wine
Branch: master
Commit: 288a200bd2d1a69a01bc827a93f2fd17865113a4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=288a200bd2d1a69a01bc827a93f2fd17865113a4

Author: Francois Gouget <fgouget at free.fr>
Date:   Sun Jan 24 19:51:14 2016 +0100

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

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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);
 




More information about the wine-cvs mailing list