diff --git a/src/Test/MeshTest.cpp b/src/Test/MeshTest.cpp index 7b382c3e4..0f8ed4271 100644 --- a/src/Test/MeshTest.cpp +++ b/src/Test/MeshTest.cpp @@ -63,7 +63,7 @@ void MeshTest::configurationPrimitive() { Utility::Configuration c; c.setValue("primitive", Mesh::Primitive::LineStrip); - CORRADE_COMPARE(c.value("primitive"), "LineStrip"); + CORRADE_COMPARE(c.value("primitive"), "LineStrip"); CORRADE_COMPARE(c.value("primitive"), Mesh::Primitive::LineStrip); } @@ -71,7 +71,7 @@ void MeshTest::configurationIndexType() { Utility::Configuration c; c.setValue("type", Mesh::IndexType::UnsignedByte); - CORRADE_COMPARE(c.value("type"), "UnsignedByte"); + CORRADE_COMPARE(c.value("type"), "UnsignedByte"); CORRADE_COMPARE(c.value("type"), Mesh::IndexType::UnsignedByte); }