From 5360662d772f08ffbac9c7a0244337a5ecc401ed Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Wed, 20 Sep 2017 13:42:13 +0200 Subject: [PATCH] Fixed test --- test/gtc/gtc_type_ptr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/gtc/gtc_type_ptr.cpp b/test/gtc/gtc_type_ptr.cpp index 14b6a0c9..cd3b0502 100644 --- a/test/gtc/gtc_type_ptr.cpp +++ b/test/gtc/gtc_type_ptr.cpp @@ -309,7 +309,7 @@ int test_make_vec4() Error += v3 == glm::ivec4(2, 2, 2, 1) ? 0 : 1; glm::ivec4 const v4 = glm::make_vec4(glm::ivec4(2)); - Error += v3 == glm::ivec4(2, 2, 2, 4) ? 0 : 1; + Error += v4 == glm::ivec4(2, 2, 2, 2) ? 0 : 1; return Error; }