From 597ed03a65325800b95e957efece590dca67a062 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 21 Apr 2020 11:53:31 +0200 Subject: [PATCH] MeshTools: reduce unwanted variability in the test. It should fail just on the assert we expect, not on something else also. --- src/Magnum/MeshTools/Test/CombineTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/MeshTools/Test/CombineTest.cpp b/src/Magnum/MeshTools/Test/CombineTest.cpp index 9d2763234..7dd6726ea 100644 --- a/src/Magnum/MeshTools/Test/CombineTest.cpp +++ b/src/Magnum/MeshTools/Test/CombineTest.cpp @@ -171,7 +171,7 @@ void CombineTest::combineIndexedAttributesNotIndexed() { {}, indices, Trade::MeshIndexData{indices}, 1}; Trade::MeshData b{MeshPrimitive::Lines, {}, indices, Trade::MeshIndexData{indices}, 1}; - Trade::MeshData c{MeshPrimitive::Lines, 5}; + Trade::MeshData c{MeshPrimitive::Lines, 1}; std::ostringstream out; Error redirectError{&out};