diff --git a/tests/test_utils.py b/tests/test_utils.py index c26e031..775b4d6 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -4,6 +4,6 @@ def test_get_today(): today = get_today() today_splits = today.split("_") - assert int(today_splits[0]) == 2023 + assert int(today_splits[0]) == 2024 assert int(today_splits[1]) in set(range(1, 13)) assert int(today_splits[2]) in set(range(1, 32))