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,19 +8,19 @@ class longlong_Tests(unittest.TestCase):
def test_longlong(self):
val1 = 2**50 # make a big value
# setting the timespan's seconds property will use the mapped type
# code to convert to a wxLongLong...
ts = wx.TimeSpan(hours=0, min=0, sec=val1)
# ...and fetching it from the timespan will use the mapped type to
# convert back from a wxLongLong to a Python object...
val2 = ts.GetSeconds()
# ...which we can compare with the original.
self.assertTrue(val1 == val2)
#---------------------------------------------------------------------------