d3drm/tests: Add missing '\n' to ok() calls.
This commit is contained in:
parent
be16475191
commit
75e5fb933a
@ -89,11 +89,11 @@ static void VectorTest(void)
|
|||||||
|
|
||||||
/*_______________________VectorDotProduct__________________________*/
|
/*_______________________VectorDotProduct__________________________*/
|
||||||
mod=D3DRMVectorDotProduct(&u,&v);
|
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_____________________________*/
|
/*_______________________VectorModulus_____________________________*/
|
||||||
mod=D3DRMVectorModulus(&u);
|
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___________________________*/
|
/*_______________________VectorNormalize___________________________*/
|
||||||
D3DRMVectorNormalize(&u);
|
D3DRMVectorNormalize(&u);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user