From 861f02b5d14fd44b55036d1af0788159db828b5f Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 5 Jan 2015 19:26:02 +0100 Subject: [PATCH] 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 1adc25d53d6..c0a62b859fd 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;