From 78f31ef6c225dbc1f1cf90bd77ad6913072cd1d9 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 7 Apr 2022 14:19:07 +0200 Subject: [PATCH] Update ImageUtilsTest.cpp --- tests/Image/ImageUtilsTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Image/ImageUtilsTest.cpp b/tests/Image/ImageUtilsTest.cpp index 9f55e10..b1661fa 100644 --- a/tests/Image/ImageUtilsTest.cpp +++ b/tests/Image/ImageUtilsTest.cpp @@ -25,9 +25,9 @@ int main(int argc, char** argv) ASSERT_EQUALS(black, 0.0, "%f", "%f"); float other = Image::ImageUtils::lightnessFromRgb(125, 125, 125); - ASSERT_EQUALS__DELTA(other, 0.524, 0.001, "%f", "%f"); + ASSERT_EQUALS_WITH_DELTA(other, 0.524, 0.001, "%f", "%f"); printf("\n\n"); return 0; -} \ No newline at end of file +}