aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtGui/qcolor_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtGui/qcolor_test.py')
-rw-r--r--sources/pyside6/tests/QtGui/qcolor_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtGui/qcolor_test.py b/sources/pyside6/tests/QtGui/qcolor_test.py
index 336d58f8e..bbd558f10 100644
--- a/sources/pyside6/tests/QtGui/qcolor_test.py
+++ b/sources/pyside6/tests/QtGui/qcolor_test.py
@@ -41,7 +41,7 @@ class QColorGetTest(unittest.TestCase):
def testGetCmykF(self): # not supported by colorsys
for x, y in zip(self.color.getCmykF(), (170 / 255.0, 85 / 255.0, 0, 195 / 255.0, 80 / 255.0)):
- self.assertTrue(x - y < 1/10000.0)
+ self.assertTrue(x - y < 1 / 10000.0)
class QColorQRgbConstructor(unittest.TestCase):