Skip to content

Commit 7f697da

Browse files
committed
Fix Mat4 unit tests
1 parent 6e2568d commit 7f697da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/math/tests/mat4_test.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
using tempest::math::mat4;
77
using tempest::math::vec4;
88

9-
TEST(Mat4F, DefaultConstructor)
9+
TEST(Mat4F, ZeroInit)
1010
{
11-
mat4<float> m;
11+
mat4<float> m{};
1212

1313
ASSERT_FLOAT_EQ(m[0][0], 0.0f);
1414
ASSERT_FLOAT_EQ(m[0][1], 0.0f);

0 commit comments

Comments
 (0)