Update glm_ivec3 test

This commit is contained in:
Christopher Lang
2022-05-20 14:26:49 +01:00
parent 94a1e6f6e1
commit 57ec29bd31

View File

@@ -12,9 +12,9 @@ TEST_IMPL(GLM_PREFIX, ivec3) {
ivec3 v3 = {99, 99, 99};
GLM(ivec3)(v4, v3);
ASSERT(test_eq(v3[0], v4[0]))
ASSERT(test_eq(v3[1], v4[1]))
ASSERT(test_eq(v3[2], v4[2]))
ASSERT(v3[0] == 2))
ASSERT(v3[1] == 3))
ASSERT(v3[2] == 5))
TEST_SUCCESS
}