diff --git a/test/unit/utglTF2ImportExport.cpp b/test/unit/utglTF2ImportExport.cpp index 399bbdc4f..ef3fc4137 100644 --- a/test/unit/utglTF2ImportExport.cpp +++ b/test/unit/utglTF2ImportExport.cpp @@ -754,9 +754,9 @@ TEST_F(utglTF2ImportExport, wrongTypes) { using tup_T = std::tuple; std::vector wrongTypes = { #ifdef __cpp_lib_constexpr_tuple - #define TUPLE(x) {x} + #define TUPLE(x, y, z, w) {x, y, z, w} #else - #define TUPLE(x) tup_T(x) + #define TUPLE(x, y, z, w) tup_T(x, y, z, w) #endif TUPLE("/glTF2/wrongTypes/badArray.gltf", "array", "primitives", "meshes[0]"), TUPLE("/glTF2/wrongTypes/badString.gltf", "string", "name", "scenes[0]"),