From b2fcd3a989404ff4daa9310b8ed573a67317c243 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Mon, 5 Mar 2012 20:02:53 +0000 Subject: [PATCH] Added delay before record creation. --- Lib/test/test_logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index 1aa0bdb6264..98a28193b47 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -3654,10 +3654,10 @@ class TimedRotatingFileHandlerTest(BaseFileTest): fmt = logging.Formatter('%(asctime)s %(message)s') fh.setFormatter(fmt) r1 = logging.makeLogRecord({'msg': 'testing - initial'}) - r2 = logging.makeLogRecord({'msg': 'testing - after delay'}) fh.emit(r1) self.assertLogFile(self.fn) time.sleep(1.1) # a little over a second ... + r2 = logging.makeLogRecord({'msg': 'testing - after delay'}) fh.emit(r2) fh.close() # At this point, we should have a recent rotated file which we