From e170e344af3283a4ad6d8dae6bcd480834d5e432 Mon Sep 17 00:00:00 2001 From: Shaun Ruffell Date: Mon, 17 May 2021 10:12:24 -0500 Subject: [PATCH] test/modify: Remove a few unused variables I left some unused varaibles in a new test functions after copy-paste. This addresses @laufts comments on #423. Signed-off-by: Shaun Ruffell --- test/modify.t | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/modify.t b/test/modify.t index 104f72aa..20efe4d4 100755 --- a/test/modify.t +++ b/test/modify.t @@ -257,10 +257,7 @@ class TestModify(TestCase): four_hours_before = now - timedelta(hours=4) now_utc = now.utcnow().replace(second=0, microsecond=0, minute=0) - day_before = now_utc - timedelta(days=1) - three_hours_before_utc = now_utc - timedelta(hours=3) four_hours_before_utc = now_utc - timedelta(hours=4) - five_hours_before_utc = now_utc - timedelta(hours=5) self.t.configure_exclusions((four_hours_before.time(), three_hours_before.time()))