From 85906f55b27ec983f6c269149e4476bf9fec13ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 19 Jun 2023 18:49:46 +0200 Subject: [PATCH] Trade: match test case declaration order with definitons. --- src/Magnum/Trade/Test/MeshDataTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/Trade/Test/MeshDataTest.cpp b/src/Magnum/Trade/Test/MeshDataTest.cpp index 24db33800..7559e93eb 100644 --- a/src/Magnum/Trade/Test/MeshDataTest.cpp +++ b/src/Magnum/Trade/Test/MeshDataTest.cpp @@ -81,8 +81,8 @@ struct MeshDataTest: TestSuite::Tester { void constructAttributeWrongSize(); #endif void constructAttributeWrongStride(); - void constructAttributeWrongDataAccess(); void constructAttributeOnlyArrayAllowed(); + void constructAttributeWrongDataAccess(); void constructArrayAttribute(); void constructArrayAttributeNonContiguous(); @@ -271,8 +271,8 @@ MeshDataTest::MeshDataTest() { &MeshDataTest::constructAttributeWrongSize, #endif &MeshDataTest::constructAttributeWrongStride, - &MeshDataTest::constructAttributeWrongDataAccess, &MeshDataTest::constructAttributeOnlyArrayAllowed, + &MeshDataTest::constructAttributeWrongDataAccess, &MeshDataTest::constructArrayAttribute, &MeshDataTest::constructArrayAttributeNonContiguous,