From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 2 May 2023 03:22:57 +0000 (-0700) Subject: [3.11] gh-88496: IDLE - fix another test on macOS (GH-104075) (#104076) X-Git-Tag: v3.11.4~134 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f191a1a7760187f6ce116b6a87c4765637ebe57;p=thirdparty%2FPython%2Fcpython.git [3.11] gh-88496: IDLE - fix another test on macOS (GH-104075) (#104076) gh-88496: IDLE - fix another test on macOS (GH-104075) Needed for Catalina: test_sidebar add 'idletasks' and skip assert. (cherry picked from commit 690df4c16ca4f0054d27a6148da9e6af809a2658) Co-authored-by: Terry Jan Reedy --- diff --git a/Lib/idlelib/idle_test/test_sidebar.py b/Lib/idlelib/idle_test/test_sidebar.py index 5506fd2b0e22..fb52b3a01795 100644 --- a/Lib/idlelib/idle_test/test_sidebar.py +++ b/Lib/idlelib/idle_test/test_sidebar.py @@ -57,7 +57,7 @@ class LineNumbersTest(unittest.TestCase): @classmethod def tearDownClass(cls): cls.editwin.per.close() - cls.root.update() + cls.root.update_idletasks() cls.root.destroy() del cls.text, cls.text_frame, cls.editwin, cls.root @@ -695,7 +695,8 @@ class ShellSidebarTest(unittest.TestCase): delta = -1 if sys.platform == 'darwin' else 120 sidebar.canvas.event_generate('', x=0, y=0, delta=delta) yield - self.assertIsNone(text.dlineinfo(text.index(f'{last_lineno}.0'))) + if sys.platform != 'darwin': # .update_idletasks() does not work. + self.assertIsNone(text.dlineinfo(text.index(f'{last_lineno}.0'))) # Scroll back down using the event. sidebar.canvas.event_generate('', x=0, y=0)