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

@@ -11,12 +11,12 @@ class fontutil_Tests(wtc.WidgetTestCase):
f1 = wx.FFont(12, wx.FONTFAMILY_SWISS)
i1 = f1.GetNativeFontInfo()
st = i1.ToString()
i2 = wx.NativeFontInfo()
i2.FromString(st)
f2 = wx.Font(i2)
self.assertTrue(f1 == f2)
def test_fontutilProperties(self):
nfi = wx.NativeFontInfo()
nfi.InitFromFont(wx.NORMAL_FONT)
@@ -30,7 +30,7 @@ class fontutil_Tests(wtc.WidgetTestCase):
nfi.Weight
#---------------------------------------------------------------------------