Skip to content

Commit

Permalink
tests: adjust times
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalEgn committed Jul 15, 2024
1 parent 13269f3 commit b1620a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_reminders.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def test_next_planning():

@freeze_time("2023-06-12")
def test_next_review():
test_date = datetime(2023, 6, 12, 15, 32)
expected_result = datetime(2023, 6, 15, 16, 00).strftime(
test_date = datetime(2023, 6, 12, 14, 32)
expected_result = datetime(2023, 6, 15, 15, 00).strftime(
"**%Y-%m-%d** at **%H:%M**"
)

Expand Down Expand Up @@ -61,7 +61,7 @@ def test_next_daily():
def test_reminder_next():
planning_content = datetime(2023, 6, 19, 15, 00)
daily_content = datetime(2023, 6, 13, 9, 30)
review_content = datetime(2023, 6, 15, 16, 00)
review_content = datetime(2023, 6, 15, 15, 00)
restrospective_content = datetime(2023, 6, 16, 9, 30).strftime(
"**%Y-%m-%d** at **%H:%M**"
)
Expand Down

0 comments on commit b1620a9

Please sign in to comment.