diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_logging.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index f215834c62..c6a64f3464 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -3515,7 +3515,7 @@ class TimedRotatingFileHandlerTest(BaseFileTest): # could of course still fail, but the chances are lower. found = False now = datetime.datetime.now() - GO_BACK = 2 * 60 # seconds + GO_BACK = 5 * 60 # seconds for secs in range(GO_BACK): prev = now - datetime.timedelta(seconds=secs) fn = self.fn + prev.strftime(".%Y-%m-%d_%H-%M-%S") |