mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-24 01:11:38 -05:00
Did stuff, fixed things. This seems to work now.
Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
@@ -203,7 +203,12 @@ def test_get_invited_user_by_service_when_user_does_not_belong_to_the_service(
|
||||
assert json_resp["result"] == "error"
|
||||
|
||||
|
||||
def test_resend_expired_invite(client, sample_expired_user, mocker):
|
||||
def test_resend_expired_invite(
|
||||
client,
|
||||
sample_expired_user,
|
||||
invitation_email_template,
|
||||
mocker,
|
||||
):
|
||||
url = f"/service/{sample_expired_user.service_id}/invite/{sample_expired_user.id}/resend"
|
||||
mock_send = mocker.patch("app.service_invite.rest.send_notification_to_queue")
|
||||
mock_persist = mocker.patch("app.service_invite.rest.persist_notification")
|
||||
|
||||
Reference in New Issue
Block a user