From: Vinay Sajip Date: Sat, 18 May 2013 17:19:54 +0000 (-0700) Subject: Re-enabled skipped test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=10e8c49a11856b26eaaf73aaee1bdad23bdbe804;p=python Re-enabled skipped test. --- diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 8350d77c2c..edb1c6383e 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -3964,14 +3964,14 @@ class TimedRotatingFileHandlerTest(BaseFileTest): finally: rh.close() - @unittest.skipIf(True, 'Temporarily skipped while failures investigated.') + #@unittest.skipIf(True, 'Temporarily skipped while failures investigated.') def test_compute_rollover_weekly_attime(self): currentTime = int(time.time()) today = currentTime - currentTime % 86400 atTime = datetime.time(12, 0, 0) - wday = datetime.datetime.fromtimestamp(currentTime + time.timezone).weekday() + wday = time.gmtime(today).tm_wday for day in range(7): rh = logging.handlers.TimedRotatingFileHandler( self.fn, when='W%d' % day, interval=1, backupCount=0, utc=True,