Module: wine Branch: master Commit: 861f02b5d14fd44b55036d1af0788159db828b5f URL: http://source.winehq.org/git/wine.git/?a=commit;h=861f02b5d14fd44b55036d1af0...
Author: Francois Gouget fgouget@free.fr Date: Mon Jan 5 19:26:02 2015 +0100
jscript: Add a trailing '\n' to an ok() call.
---
dlls/jscript/tests/run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/jscript/tests/run.c b/dlls/jscript/tests/run.c index 1adc25d..c0a62b8 100644 --- a/dlls/jscript/tests/run.c +++ b/dlls/jscript/tests/run.c @@ -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;