diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/unittest_date.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unittest_date.py b/test/unittest_date.py index 494c86f..9ae444b 100644 --- a/test/unittest_date.py +++ b/test/unittest_date.py @@ -149,7 +149,7 @@ class DateTC(TestCase): def test_utcdatetime(self): if self.datetimecls is mxDateTime: - raise self.skipTest('standard datetime only test') + return d = self.datetimecls(2014, 11, 26, 12, 0, 0, 57, tzinfo=pytz.utc) d = utcdatetime(d) self.assertEqual(d, self.datetimecls(2014, 11, 26, 12, 0, 0, 57)) |