From 8916c50a3df68739aed8ac97da15328bb36b9b3b Mon Sep 17 00:00:00 2001 From: Christopher Lang Date: Thu, 19 May 2022 16:52:55 +0100 Subject: [PATCH] Update glm_ivec2 test --- test/src/test_ivec2.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/src/test_ivec2.h b/test/src/test_ivec2.h index e4dba4a..4cf4850 100644 --- a/test/src/test_ivec2.h +++ b/test/src/test_ivec2.h @@ -13,12 +13,12 @@ TEST_IMPL(GLM_PREFIX, ivec2) { ivec2 v2; GLM(ivec2)(v4, v2); - ASSERT(v2[0] == v4[0]) - ASSERT(v2[1] == v4[1]) + ASSERT(v2[0] == 2) + ASSERT(v2[1] == 3) GLM(ivec2)(v3, v2); - ASSERT(v2[0] == v3[0]) - ASSERT(v2[1] == v3[1]) + ASSERT(v2[0] == 11) + ASSERT(v2[1] == 13) TEST_SUCCESS }