From ee09707c1c22383ba48a3342ce5acd04c43cab55 Mon Sep 17 00:00:00 2001 From: Christopher Lang Date: Tue, 17 May 2022 15:53:37 +0100 Subject: [PATCH] Fix ivec2 test --- test/src/test_ivec2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/src/test_ivec2.h b/test/src/test_ivec2.h index 8dc6f91..d46d890 100644 --- a/test/src/test_ivec2.h +++ b/test/src/test_ivec2.h @@ -9,8 +9,8 @@ TEST_IMPL(GLM_PREFIX, ivec2) { ivec4 v4 = {2, 3, 5, 7}; - ivec4 v3 = {11, 13, 17}; - ivec4 v2; + ivec3 v3 = {11, 13, 17}; + ivec2 v2; GLM(ivec2)(v4, v2); ASSERT(test_eq(v2[0], v4[0]))