From 5f0fe8ec70120f4586d08978b0911b436f82c421 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 16 Dec 2020 12:31:49 +0200 Subject: bpo-19733: Re-enable tests for -image option in Tkinter (GH-23785) --- Lib/tkinter/test/test_tkinter/test_widgets.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'Lib/tkinter/test/test_tkinter/test_widgets.py') diff --git a/Lib/tkinter/test/test_tkinter/test_widgets.py b/Lib/tkinter/test/test_tkinter/test_widgets.py index b6f792d6c2c..4b9b6ebdda0 100644 --- a/Lib/tkinter/test/test_tkinter/test_widgets.py +++ b/Lib/tkinter/test/test_tkinter/test_widgets.py @@ -2,7 +2,6 @@ import unittest import tkinter from tkinter import TclError import os -import sys from test.support import requires from tkinter.test.support import (tcl_version, requires_tcl, @@ -265,8 +264,6 @@ class MenubuttonTest(AbstractLabelTest, unittest.TestCase): test_highlightthickness = StandardOptionsTests.test_highlightthickness - @unittest.skipIf(sys.platform == 'darwin', - 'crashes with Cocoa Tk (issue19733)') def test_image(self): widget = self.create() image = tkinter.PhotoImage(master=self.root, name='image1') -- cgit v1.2.3