From 94f81e3754794d3a934026b282c3c26ce21ce60b Mon Sep 17 00:00:00 2001 From: jcgoette Date: Sat, 12 Nov 2022 03:04:20 +0000 Subject: [PATCH] test: Remove out of date comment --- core/tests/tests_models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/core/tests/tests_models.py b/core/tests/tests_models.py index 654b35bf..6bfc5a25 100644 --- a/core/tests/tests_models.py +++ b/core/tests/tests_models.py @@ -318,7 +318,6 @@ class TimerTestCase(TestCase): def test_timer_duration(self): timer = models.Timer.objects.create(user=User.objects.first()) - # Timer.start uses auto_now_add, so it cannot be set in create(). timer.start = timezone.localtime() - timezone.timedelta(minutes=30) timer.save() timer.refresh_from_db()