jscript: Add a trailing '\n' to an ok() call.

This commit is contained in:
Francois Gouget 2015-01-05 19:26:02 +01:00 committed by Alexandre Julliard
parent f2eaf730a5
commit 861f02b5d1
1 changed files with 1 additions and 1 deletions

View File

@ -1954,7 +1954,7 @@ static void test_default_value(void)
hres = parse_script_expr("new Date()", &v);
ok(hres == S_OK, "parse_script_expr failed: %08x\n", hres);
ok(V_VT(&v) == VT_DISPATCH, "V_VT(v) = %d", V_VT(&v));
ok(V_VT(&v) == VT_DISPATCH, "V_VT(v) = %d\n", V_VT(&v));
disp = V_DISPATCH(&v);
V_VT(&v) = VT_EMPTY;