From 57ec29bd3138d67f537180d2b8c789614b4c7c0a Mon Sep 17 00:00:00 2001 From: Christopher Lang Date: Fri, 20 May 2022 14:26:49 +0100 Subject: [PATCH] Update glm_ivec3 test --- test/src/test_ivec3.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/src/test_ivec3.h b/test/src/test_ivec3.h index 025c06c..b0c7903 100644 --- a/test/src/test_ivec3.h +++ b/test/src/test_ivec3.h @@ -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 }