Commit 75e5fb93 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

d3drm/tests: Add missing '\n' to ok() calls.

parent be164751
......@@ -89,11 +89,11 @@ static void VectorTest(void)
/*_______________________VectorDotProduct__________________________*/
mod=D3DRMVectorDotProduct(&u,&v);
ok((mod == 16.0), "Expected 16.0, Got %f",mod);
ok((mod == 16.0), "Expected 16.0, Got %f\n",mod);
/*_______________________VectorModulus_____________________________*/
mod=D3DRMVectorModulus(&u);
ok((mod == 3.0), "Expected 3.0, Got %f",mod);
ok((mod == 3.0), "Expected 3.0, Got %f\n",mod);
/*_______________________VectorNormalize___________________________*/
D3DRMVectorNormalize(&u);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment