Fix up Transposed -> Tranpose in unit tests

This commit is contained in:
Eryn Wells 2014-08-16 00:44:07 -07:00
parent c45d698424
commit dc6efc5e65

View file

@ -297,7 +297,7 @@ TEST_F(Matrix4Test, IdentityVectorMultiplication)
TEST_F(Matrix4Test, Transpose)
{
Matrix4 t1 = Transposed(m1);
Matrix4 t1 = Transpose(m1);
for (UInt i = 0; i < 4; i++) {
for (UInt j = 0; j < 4; j++) {
EXPECT_EQ(m1(i,j), t1(j,i));