From fdb6ef774a4835acb6f10d0ee6901eab0dc92645 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Fri, 17 Jun 2016 19:55:46 -0400 Subject: Issue #27312: mock out function that fails when called from setupApp during IDLE test_macosx and see if addOpenEventSupport() fails. --- Lib/idlelib/idle_test/test_macosx.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/idlelib/idle_test/test_macosx.py b/Lib/idlelib/idle_test/test_macosx.py index d7f8f5d..189dc48 100644 --- a/Lib/idlelib/idle_test/test_macosx.py +++ b/Lib/idlelib/idle_test/test_macosx.py @@ -83,6 +83,7 @@ class SetupTest(unittest.TestCase): cls.root.destroy() del cls.root + @mock.patch('idlelib.macosx.overrideRootMenu') #27312 def test_setupapp(self): "Call setupApp with each possible graphics type." root = self.root -- cgit v0.12