aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRenato Araujo Oliveira Filho <renato.filho@openbossa.org>2010-12-27 13:20:43 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:48:04 -0300
commit949f6b52558e150f8727c1496167d67c1c0799ef (patch)
treec0d06b94485e81c6449af72304ed945f51c31b2f
parent85715f3fc3de87bfa4ac07f4d76f1b69bb012109 (diff)
Removed some float comparisons from QColor test to avoid armel problems.
Reviewed by Hugo Parente <hugo.lima@openbossa.org>
-rw-r--r--tests/QtGui/qcolor_test.py13
1 files changed, 1 insertions, 12 deletions
diff --git a/tests/QtGui/qcolor_test.py b/tests/QtGui/qcolor_test.py
index a636ad6c1..1a9472894 100644
--- a/tests/QtGui/qcolor_test.py
+++ b/tests/QtGui/qcolor_test.py
@@ -2,7 +2,7 @@
import unittest
import colorsys
-from PySide.QtCore import Qt
+from PySide.QtCore import Qt, qFuzzyCompare
from PySide.QtGui import QColor
@@ -14,12 +14,6 @@ class QColorGetTest(unittest.TestCase):
def testGetRgb(self):
self.assertEqual(self.color.getRgb(), (20, 40, 60, 80))
- def testGetRgbF(self):
- self.assertEqual(self.color.getRgbF(), (20.0/255, 40.0/255, 60.0/255, 80.0/255))
-
- def testGetHsl(self):
- 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)
hsla = hls[0], hls[2], hls[1], self.color.alphaF()
@@ -31,11 +25,6 @@ class QColorGetTest(unittest.TestCase):
hsva = int(hsv[0]*360.0), int(hsv[1]*255), int(hsv[2]*256), self.color.alpha()
self.assertEqual(self.color.getHsv(), hsva)
- def testGetHsvF(self):
- hsv = colorsys.rgb_to_hsv(20.0/255, 40.0/255, 60.0/255)
- hsva = hsv[0], hsv[1], hsv[2], self.color.alphaF()
- self.assertEqual(self.color.getHsvF(), hsva)
-
def testGetCmyk(self): # not supported by colorsys
self.assertEqual(self.color.getCmyk(), (170, 85, 0, 195, 80))