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

@@ -5,17 +5,17 @@ import wx
#---------------------------------------------------------------------------
class ControlTests(wtc.WidgetTestCase):
def test_ControlCtors(self):
c = wx.Control(self.frame)
c = wx.Control(self.frame, -1, wx.Point(10,10), wx.Size(80,-1))
def test_ControlDefaultCtor(self):
c = wx.Control()
c.Create(self.frame)
#---------------------------------------------------------------------------