diff --git a/src/Math/Test/MathTest.cpp b/src/Math/Test/MathTest.cpp index 862f1a15b..98b4c9034 100644 --- a/src/Math/Test/MathTest.cpp +++ b/src/Math/Test/MathTest.cpp @@ -73,12 +73,8 @@ void MathTest::denormalize() { CORRADE_COMPARE(Math::denormalize(1.0), numeric_limits::max()); CORRADE_COMPARE(Math::denormalize(1.0), numeric_limits::max()); - - { - CORRADE_EXPECT_FAIL("Denormalize doesn't work for large types well"); - CORRADE_COMPARE((Math::denormalize(1.0)), numeric_limits::max()); - CORRADE_COMPARE((Math::denormalize(1.0)), numeric_limits::max()); - } + CORRADE_COMPARE((Math::denormalize(1.0)), numeric_limits::max()); + CORRADE_COMPARE((Math::denormalize(1.0)), numeric_limits::max()); } void MathTest::clamp() {