-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix broken go live email notification
- Loading branch information
Kenneth Kehl
committed
Nov 27, 2024
1 parent
4a31b2e
commit 61b9948
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,9 +87,7 @@ 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", autospec=True) | ||
|
||
first_active_user = create_user(email="[email protected]", state="active") | ||
second_active_user = create_user(email="[email protected]", state="active") | ||
|