From: Dirk Lemstra Date: Mon, 30 Jan 2017 12:28:58 +0000 (+0100) Subject: Use lime instead of green to avoid rounding issues (fixes #363). X-Git-Tag: 7.0.4-7~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a5c463d59268d2557d90565415b8e5047b25e7d2;p=imagemagick Use lime instead of green to avoid rounding issues (fixes #363). --- diff --git a/Magick++/tests/color.cpp b/Magick++/tests/color.cpp index 4d12324b6..138ed2127 100644 --- a/Magick++/tests/color.cpp +++ b/Magick++/tests/color.cpp @@ -40,7 +40,7 @@ int main( int /*argc*/, char **argv) struct colorStr colorMap [] = { { "red", 1,0,0 }, - { "green", 0,0.5019607843137255,0 }, + { "lime", 0,1,0 }, { "blue", 0,0,1 }, { "black", 0,0,0 }, { "white", 1,1,1 },