From: Ned Deily Date: Sun, 24 Feb 2019 08:04:19 +0000 (-0500) Subject: bpo-26386: Re-enable missing widget testcases in test_ttk_guionly. (GH-12014) X-Git-Tag: v2.7.17rc1~147 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72ff2f7554e550762acaad805a8a0d456a29468a;p=thirdparty%2FPython%2Fcpython.git bpo-26386: Re-enable missing widget testcases in test_ttk_guionly. (GH-12014) --- diff --git a/Lib/lib-tk/test/test_ttk/test_widgets.py b/Lib/lib-tk/test/test_ttk/test_widgets.py index 3d5683cc4f5f..ec8899baac24 100644 --- a/Lib/lib-tk/test/test_ttk/test_widgets.py +++ b/Lib/lib-tk/test/test_ttk/test_widgets.py @@ -1675,9 +1675,5 @@ tests_gui = ( SizegripTest, TreeviewTest, WidgetTest, ) -tests_gui = ( - TreeviewTest, - ) - if __name__ == "__main__": run_unittest(*tests_gui) diff --git a/Misc/NEWS.d/next/Tests/2019-02-24-02-44-52.bpo-26386.YZylPP.rst b/Misc/NEWS.d/next/Tests/2019-02-24-02-44-52.bpo-26386.YZylPP.rst new file mode 100644 index 000000000000..b047fc8a7eba --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2019-02-24-02-44-52.bpo-26386.YZylPP.rst @@ -0,0 +1 @@ +Re-enable missing widget testcases in test_ttk_guionly.