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

This commit is contained in:
Francois Gouget 2012-09-25 11:33:16 +02:00 committed by Alexandre Julliard
parent 2606b85687
commit 9c1402e6a9

View file

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