summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_logging.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
index f96cdea..99476de 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()