Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Lib/tkinter/test/test_tkinter/test_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import tkinter
from tkinter import TclError
import os
import sys
from test.support import requires

from tkinter.test.support import (tcl_version, requires_tcl,
Expand Down Expand Up @@ -265,8 +264,6 @@ def test_height(self):

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')
Expand Down
3 changes: 0 additions & 3 deletions Lib/tkinter/test/widget_tests.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Common tests for test_tkinter/test_widgets.py and test_ttk/test_widgets.py

import unittest
import sys
import tkinter
from tkinter.test.support import (AbstractTkTest, tcl_version, requires_tcl,
get_tk_patchlevel, pixels_conv, tcl_obj_eq)
Expand Down Expand Up @@ -332,8 +331,6 @@ def test_highlightthickness(self):
self.checkParam(widget, 'highlightthickness', -2, expected=0,
conv=self._conv_pixels)

@unittest.skipIf(sys.platform == 'darwin',
'crashes with Cocoa Tk (issue19733)')
def test_image(self):
widget = self.create()
self.checkImageParam(widget, 'image')
Expand Down