Commit 9c1402e6 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 2606b856
......@@ -4823,7 +4823,7 @@ static void test_defaults(IHTMLDocument2 *doc)
str = NULL;
hres = IHTMLDocument2_get_charset(doc, &str);
ok(hres == S_OK, "get_charset failed: %08x\n", hres);
ok(str && *str, "charset is empty"); /* FIXME: better tests */
ok(str && *str, "charset is empty\n"); /* FIXME: better tests */
SysFreeString(str);
test_window(doc);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment