Skip to content

Commit

Permalink
fix: update test for redis has no data
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewleith committed Dec 10, 2024
1 parent 4fe33b9 commit 27efcb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/app/main/views/test_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -1582,7 +1582,7 @@ def test_usage_report_aggregates_calculated_properly_without_redis(
# mock annual_limit_client.get_all_notification_counts
mocker.patch(
"app.main.views.dashboard.annual_limit_client.get_all_notification_counts",
return_value=None,
return_value={"sms_delivered": 0, "email_delivered": 0, "sms_failed": 0, "email_failed": 0},
)

mocker.patch(
Expand Down

0 comments on commit 27efcb0

Please sign in to comment.