From: Terry Jan Reedy Date: Wed, 10 Aug 2016 17:16:26 +0000 (-0400) Subject: Issue #27380: For test_query on Mac, adjust one expected result. X-Git-Tag: v3.6.0a4~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=40a46ad46776515d7f0c3ac08cd6ac081058ece0;p=python Issue #27380: For test_query on Mac, adjust one expected result. --- diff --git a/Lib/idlelib/idle_test/test_query.py b/Lib/idlelib/idle_test/test_query.py index 584cd88992..e9ed694dc0 100644 --- a/Lib/idlelib/idle_test/test_query.py +++ b/Lib/idlelib/idle_test/test_query.py @@ -13,6 +13,7 @@ Coverage: 94% (100% for Query and SectionName). 6 of 8 missing are ModuleName exceptions I don't know how to trigger. """ from test.support import requires +import sys from tkinter import Tk import unittest from unittest import mock @@ -337,7 +338,8 @@ class HelpsourceGuiTest(unittest.TestCase): Equal(dialog.entry.get(), '__test__') Equal(dialog.path.get(), __file__) dialog.button_ok.invoke() - Equal(dialog.result, ('__test__', __file__)) + prefix = "file://" if sys.platform == 'darwin' else '' + Equal(dialog.result, ('__test__', prefix + __file__)) del dialog root.destroy() del root