]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-45496: Allow flexibility in winfo_rgb tests (GH-30185)
authorE-Paine <63801254+E-Paine@users.noreply.github.com>
Sun, 26 Dec 2021 11:28:24 +0000 (11:28 +0000)
committerGitHub <noreply@github.com>
Sun, 26 Dec 2021 11:28:24 +0000 (13:28 +0200)
Lib/tkinter/test/test_tkinter/test_misc.py

index 2c78eaca2c85b496fceac01ce7f8412f8a7dd561..044eb10d688356f7b1229fb8dfdad485cf96e18f 100644 (file)
@@ -201,6 +201,13 @@ class MiscTest(AbstractTkTest, unittest.TestCase):
             root.clipboard_get()
 
     def test_winfo_rgb(self):
+
+        def assertApprox(col1, col2):
+            # A small amount of flexibility is required (bpo-45496)
+            # 33 is ~0.05% of 65535, which is a reasonable margin
+            for col1_channel, col2_channel in zip(col1, col2):
+                self.assertAlmostEqual(col1_channel, col2_channel, delta=33)
+
         root = self.root
         rgb = root.winfo_rgb
 
@@ -210,9 +217,9 @@ class MiscTest(AbstractTkTest, unittest.TestCase):
         # #RGB - extends each 4-bit hex value to be 16-bit.
         self.assertEqual(rgb('#F0F'), (0xFFFF, 0x0000, 0xFFFF))
         # #RRGGBB - extends each 8-bit hex value to be 16-bit.
-        self.assertEqual(rgb('#4a3c8c'), (0x4a4a, 0x3c3c, 0x8c8c))
+        assertApprox(rgb('#4a3c8c'), (0x4a4a, 0x3c3c, 0x8c8c))
         # #RRRRGGGGBBBB
-        self.assertEqual(rgb('#dede14143939'), (0xdede, 0x1414, 0x3939))
+        assertApprox(rgb('#dede14143939'), (0xdede, 0x1414, 0x3939))
         # Invalid string.
         with self.assertRaises(tkinter.TclError):
             rgb('#123456789a')