From: Vinay Sajip Date: Sun, 14 Apr 2013 11:25:25 +0000 (+0100) Subject: Issue #17713: additional tweak to test. X-Git-Tag: v3.4.0a1~930 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b4c7198dbc0f61a58822a5be92355a5206cd0b6;p=python Issue #17713: additional tweak to test. --- diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index f96cdea732..99476de427 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -3993,7 +3993,7 @@ class TimedRotatingFileHandlerTest(BaseFileTest): if day == wday: # goes into following week expected += 7 * 24 * 60 * 60 - actual = rh.computeRollover(currentTime + 13 * 60 * 60) + actual = rh.computeRollover(today + 13 * 60 * 60) self.assertEqual(actual, expected) finally: rh.close()