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]))