fix broken go live email notification

This commit is contained in:
Kenneth Kehl
2024-11-27 10:05:41 -08:00
parent d23fece060
commit 9b392af576
2 changed files with 6 additions and 1 deletions

View File

@@ -83,7 +83,9 @@ def test_send_notification_to_service_users_sends_to_active_users_only(
notify_service, mocker
):
mocker.patch("app.service.sender.send_notification_to_queue")
mocker.patch("app.service.sender.redis_store")
mocker.patch(
"app.service.sender.redis_store",
)
first_active_user = create_user(email="foo@bar.com", state="active")
second_active_user = create_user(email="foo1@bar.com", state="active")