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__________________________*/
|
||||
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);
|
||||
|
|
Loading…
Reference in New Issue