From b9bce03f71a7633f025f1c2a1ed1a937fbc9e667 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Fri, 30 Oct 2020 16:10:07 -0400 Subject: [PATCH] fix a test related to proximity to the DST boundary technically speaking, this test could still fail on the Saturday before DST boundaries ...but I don't care --- awx/main/tests/functional/api/test_schedules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/functional/api/test_schedules.py b/awx/main/tests/functional/api/test_schedules.py index 7b93c2804b..bdaa6aa4a6 100644 --- a/awx/main/tests/functional/api/test_schedules.py +++ b/awx/main/tests/functional/api/test_schedules.py @@ -349,7 +349,7 @@ def test_months_with_31_days(post, admin_user): ('MINUTELY', 1, 60), ('MINUTELY', 15, 15 * 60), ('HOURLY', 1, 3600), - ('HOURLY', 4, 3600 * 4), + ('HOURLY', 2, 3600 * 2), )) def test_really_old_dtstart(post, admin_user, freq, delta, total_seconds): url = reverse('api:schedule_rrule')