From 191bb753c46a84dc6b55ab489e44f2ce9b92b059 Mon Sep 17 00:00:00 2001 From: Lyz Date: Fri, 26 Jul 2024 13:34:38 +0200 Subject: [PATCH] tests: fix repetition string --- tests/test_timestamp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_timestamp.py b/tests/test_timestamp.py index 14ceeac..7d69d13 100644 --- a/tests/test_timestamp.py +++ b/tests/test_timestamp.py @@ -44,7 +44,7 @@ def test_init_with_year_month_day() -> None: hour=15, minute=45, dow="Saturday", - repetition="Weekly", + repetition=".+1d", ) assert ts.active is True @@ -54,7 +54,7 @@ def test_init_with_year_month_day() -> None: assert ts.hour == 15 assert ts.minute == 45 assert ts.dow == "Saturday" - assert ts.repetition == "Weekly" + assert ts.repetition == ".+1d" def test_init_without_required_arguments() -> None: