From: Ezio Melotti Date: Sun, 13 Dec 2009 18:54:53 +0000 (+0000) Subject: #7342: make sure that the datetime object in test_fraction always has a number of... X-Git-Tag: v2.7a2~179 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e304852e21a92ef0a74c2d85c070572fddb4fba8;p=python #7342: make sure that the datetime object in test_fraction always has a number of microseconds != 0 --- diff --git a/Lib/test/test_strptime.py b/Lib/test/test_strptime.py index b7acc252be..c37bdc7f77 100644 --- a/Lib/test/test_strptime.py +++ b/Lib/test/test_strptime.py @@ -274,10 +274,11 @@ class StrptimeTests(unittest.TestCase): self.helper('S', 5) def test_fraction(self): + # Test microseconds import datetime - now = datetime.datetime.now() - tup, frac = _strptime._strptime(str(now), format="%Y-%m-%d %H:%M:%S.%f") - self.assertEqual(frac, now.microsecond) + d = datetime.datetime(2012, 12, 20, 12, 34, 56, 78987) + tup, frac = _strptime._strptime(str(d), format="%Y-%m-%d %H:%M:%S.%f") + self.assertEqual(frac, d.microsecond) def test_weekday(self): # Test weekday directives