diff --git a/test/attitude.cpp b/test/attitude.cpp index 5ce3c45b4a..3d38aa9d94 100644 --- a/test/attitude.cpp +++ b/test/attitude.cpp @@ -128,7 +128,7 @@ int main() // quaternion product Quatf q_prod_check( - 0.93394439f, 0.0674002f, 0.20851f, 0.28236266f); + 0.93394439f, 0.0674002f, 0.20851f, 0.28236266f); assert(q_prod_check == q_check*q_check); }; diff --git a/test/inverse.cpp b/test/inverse.cpp index 7a438d0859..ba85fae463 100644 --- a/test/inverse.cpp +++ b/test/inverse.cpp @@ -19,7 +19,8 @@ int main() float data_check[9] = { -0.4f, -0.8f, 0.6f, -0.4f, 4.2f, -2.4f, - 0.6f, -2.8f, 1.6f}; + 0.6f, -2.8f, 1.6f + }; SquareMatrix A(data); SquareMatrix A_I = inv(A); diff --git a/test/matrixAssignment.cpp b/test/matrixAssignment.cpp index 6083a92554..8202920a4a 100644 --- a/test/matrixAssignment.cpp +++ b/test/matrixAssignment.cpp @@ -60,7 +60,8 @@ int main() float data_col_02_swap[9] = { 3, 2, 1, 6, 5, 4, - 9, 8, 7}; + 9, 8, 7 + }; Matrix3f m4(data);