From fc489ff457d4229e000bfba13291ae431cc90c25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 22 Apr 2016 17:06:30 +0200 Subject: [PATCH] Math: oops, part 2. --- src/Magnum/Math/Test/ColorTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/Math/Test/ColorTest.cpp b/src/Magnum/Math/Test/ColorTest.cpp index 32f3cbc65..f393416c1 100644 --- a/src/Magnum/Math/Test/ColorTest.cpp +++ b/src/Magnum/Math/Test/ColorTest.cpp @@ -126,7 +126,7 @@ void ColorTest::constructDefault() { constexpr Color4 b; constexpr Color4ub c; CORRADE_COMPARE(b, Color4(0.0f, 0.0f, 0.0f, 0.0f)); - CORRADE_COMPARE(c, Color4ub(0, 0, 0, 255)); + CORRADE_COMPARE(c, Color4ub(0, 0, 0, 0)); } void ColorTest::constructZero() {