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

@@ -15,13 +15,13 @@ class dragimag_Tests(wtc.WidgetTestCase):
def test_dragimag2(self):
di = wx.DragImage(wx.Bitmap(pngFile))
def test_dragimag3(self):
di = wx.DragImage(wx.Icon(icoFile))
def test_dragimag4(self):
di = wx.DragImage("Some draggable text")
def test_dragimag5(self):
ctrl = wx.TreeCtrl(self.frame)
root = ctrl.AddRoot('root item')
@@ -39,13 +39,13 @@ class dragimag_Tests(wtc.WidgetTestCase):
def test_genericdragimag2(self):
di = wx.GenericDragImage(wx.Bitmap(pngFile))
def test_genericdragimag3(self):
di = wx.GenericDragImage(wx.Icon(icoFile))
def test_genericdragimag4(self):
di = wx.GenericDragImage("Some draggable text")
def test_genericdragimag5(self):
ctrl = wx.TreeCtrl(self.frame)
root = ctrl.AddRoot('root item')
@@ -56,7 +56,7 @@ class dragimag_Tests(wtc.WidgetTestCase):
ctrl.AppendColumn('hello')
idx = ctrl.InsertItem(0, "a list item")
di = wx.GenericDragImage(ctrl, idx)
#---------------------------------------------------------------------------
if __name__ == '__main__':