aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/qtgui/qcolor_test.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/qtgui/qcolor_test.py b/tests/qtgui/qcolor_test.py
index 3a4932647..3c2f11ba0 100644
--- a/tests/qtgui/qcolor_test.py
+++ b/tests/qtgui/qcolor_test.py
@@ -18,8 +18,7 @@ class QColorGetTest(unittest.TestCase):
self.assertEqual(self.color.getRgbF(), (20.0/255, 40.0/255, 60.0/255, 80.0/255))
def testGetHsl(self):
- hls = colorsys.rgb_to_hls(0.78, 0.15, 0.23)
- self.assertEqual(self.color.getHsl(), (210, 127, 40, self.color.alpha()))
+ self.assertEqual(self.color.getHsl(), (210, 128, 40, self.color.alpha()))
def testGetHslF(self):
hls = colorsys.rgb_to_hls(20.0/255, 40.0/255, 60.0/255)