Trim trailing space unittests directory

This commit is contained in:
Metallicow
2016-12-05 16:19:11 -06:00
parent 2de746beda
commit 9568103974
299 changed files with 2896 additions and 2898 deletions

View File

@@ -7,21 +7,21 @@ import os
#---------------------------------------------------------------------------
class tooltip_Tests(wtc.WidgetTestCase):
def test_tooltip(self):
tip = wx.ToolTip('help message')
self.frame.SetToolTip(tip)
tip.Tip
tip.Window
tip.Tip = 'new help message'
def test_tooltipStatics(self):
wx.ToolTip.Enable(True)
wx.ToolTip.SetAutoPop(2000)
wx.ToolTip.SetDelay(2000)
wx.ToolTip.SetMaxWidth(500)
wx.ToolTip.SetReshow(2000)
#---------------------------------------------------------------------------