Skip to content

Commit

Permalink
Update test_reminders.py
Browse files Browse the repository at this point in the history
  • Loading branch information
drjova authored Feb 8, 2024
1 parent 19a2fac commit 6912ddb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_reminders.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ 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, 14, 45).strftime(
expected_result = datetime(2023, 6, 15, 16, 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, 14, 45)
review_content = datetime(2023, 6, 15, 16, 00)
restrospective_content = datetime(2023, 6, 16, 9, 30).strftime(
"**%Y-%m-%d** at **%H:%M**"
)
Expand Down

0 comments on commit 6912ddb

Please sign in to comment.