Skip to content

Commit

Permalink
Fix a test that was broken when changing the mat3 inverse call
Browse files Browse the repository at this point in the history
  • Loading branch information
Kazade committed Jan 24, 2013
1 parent a81fee6 commit 29ade48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_mat3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ TEST(test_mat3_inverse) {

kmMat3 adj;
CHECK(NULL != kmMat3Adjugate(&adj, &mat));
CHECK(NULL != kmMat3Inverse(&mat, kmMat3Determinant(&mat), &mat));
CHECK(NULL != kmMat3Inverse(&mat, &mat));
CHECK(kmMat3IsIdentity(&mat));
}

Expand Down

0 comments on commit 29ade48

Please sign in to comment.