From cd4d0a1efeeb61205c55283234f423aad1b93657 Mon Sep 17 00:00:00 2001 From: Christopher Lang Date: Thu, 19 May 2022 17:11:58 +0100 Subject: [PATCH] Update glm_ivec2_copy test --- test/src/test_ivec2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/test_ivec2.h b/test/src/test_ivec2.h index 4cf4850..33f3cd0 100644 --- a/test/src/test_ivec2.h +++ b/test/src/test_ivec2.h @@ -25,7 +25,7 @@ TEST_IMPL(GLM_PREFIX, ivec2) { TEST_IMPL(GLM_PREFIX, ivec2_copy) { ivec2 src = {7, 5}; - ivec2 dst = {10, 11}; + ivec2 dst = {99, 99}; GLM(ivec2_copy)(src, dst); ASSERT(dst[0] == 7)