Fix up Transposed -> Tranpose in unit tests
This commit is contained in:
parent
c45d698424
commit
dc6efc5e65
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue