Issue #19085: Fix running test_ttk_textonly on displayless host.

This commit is contained in:
Serhiy Storchaka 2013-11-04 23:05:37 +02:00
parent 8d8599ce0c
commit 2028e01313
2 changed files with 16 additions and 9 deletions

View file

@ -4,7 +4,8 @@ import os
from test.support import requires
from tkinter.test.support import tcl_version, requires_tcl, widget_eq
from tkinter.test.widget_tests import (add_standard_options, noconv,
from tkinter.test.widget_tests import (
add_standard_options, noconv, pixels_round,
AbstractWidgetTest, StandardOptionsTests, IntegerSizeTests, PixelSizeTests)
requires('gui')
@ -243,7 +244,7 @@ class MenubuttonTest(AbstractLabelTest, unittest.TestCase):
'takefocus', 'text', 'textvariable',
'underline', 'width', 'wraplength',
)
_conv_pixels = AbstractWidgetTest._conv_pixels
_conv_pixels = staticmethod(pixels_round)
def _create(self, **kwargs):
return tkinter.Menubutton(self.root, **kwargs)