From a3265ebe843814e067021089991e9a6966206457 Mon Sep 17 00:00:00 2001 From: Christopher Lang Date: Fri, 20 May 2022 14:27:30 +0100 Subject: [PATCH] Fix glm_ivec3_one test --- test/src/test_ivec3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/test_ivec3.h b/test/src/test_ivec3.h index b0c7903..d53068b 100644 --- a/test/src/test_ivec3.h +++ b/test/src/test_ivec3.h @@ -56,7 +56,7 @@ TEST_IMPL(GLM_PREFIX, ivec3_one) { TEST_IMPL(GLM_PREFIX, ivec3_add) { ivec3 a = {14, 3, 2}; ivec3 b = {-3, 2, 1}; - ivec3 v = {99, 99}; + ivec3 v = {99, 99, 99}; GLM(ivec3_add)(a, b, v); ASSERT(v[0] == 11) ASSERT(v[1] == 5)