oleaut32/tests: Fix printing of an expected value.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-02-12 23:43:31 +01:00 committed by Alexandre Julliard
parent 9d4c73f4c1
commit d506882266
1 changed files with 1 additions and 2 deletions

View File

@ -2722,8 +2722,7 @@ static void test_VarSub(void)
ok(hres == S_OK && V_VT(&result) == VT_DECIMAL,
"VarSub: expected coerced type VT_DECIMAL, got %s!\n", vtstr(V_VT(&result)));
hres = VarR8FromDec(&V_DECIMAL(&result), &r);
ok(hres == S_OK && EQ_DOUBLE(r, -6.8),
"VarSub: DECIMAL value %f, expected %f\n", r, (double)-15.2);
ok(hres == S_OK && EQ_DOUBLE(r, -6.8), "VarSub: DECIMAL value %f, expected %f\n", r, -6.8);
SysFreeString(lbstr);
SysFreeString(rbstr);