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

@@ -8,7 +8,7 @@ pngFile = os.path.join(os.path.dirname(__file__), 'toucan.png')
#---------------------------------------------------------------------------
class ButtonTests(wtc.WidgetTestCase):
def test_ButtonCtors(self):
btn = wx.Button(self.frame, label='label')
btn = wx.Button(self.frame, -1, 'label', (10,10), (100,-1), wx.BU_LEFT)
@@ -17,7 +17,7 @@ class ButtonTests(wtc.WidgetTestCase):
def test_ButtonProperties(self):
btn = wx.Button(self.frame, label='label')
# do the properties exist?
btn.AuthNeeded
btn.Bitmap
@@ -28,14 +28,14 @@ class ButtonTests(wtc.WidgetTestCase):
btn.BitmapMargins
btn.BitmapPressed
btn.Label
def test_ButtonDefaultCtor(self):
btn = wx.Button()
btn.Create(self.frame, -1, 'button label')
#---------------------------------------------------------------------------