mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-03 09:51:11 -05:00
fix uuid
This commit is contained in:
@@ -738,7 +738,7 @@ def test_should_use_email_template_subject_placeholders(
|
||||
assert not persisted_notification.reference
|
||||
assert persisted_notification.notification_type == NotificationType.EMAIL
|
||||
provider_tasks.deliver_email.apply_async.assert_called_once_with(
|
||||
[str(persisted_notification.id)], queue="send-email-tasks", countdown=30
|
||||
[str(persisted_notification.id)], queue="send-email-tasks"
|
||||
)
|
||||
|
||||
|
||||
@@ -822,7 +822,7 @@ def test_should_use_email_template_and_persist_without_personalisation(
|
||||
assert not persisted_notification.reference
|
||||
assert persisted_notification.notification_type == NotificationType.EMAIL
|
||||
provider_tasks.deliver_email.apply_async.assert_called_once_with(
|
||||
[str(persisted_notification.id)], queue="send-email-tasks", countdown=30
|
||||
[str(persisted_notification.id)], queue="send-email-tasks"
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -73,7 +73,7 @@ def test_create_invited_org_user(
|
||||
# assert len(notification.personalisation["url"]) > len(expected_start_of_invite_url)
|
||||
|
||||
mocked.assert_called_once_with(
|
||||
[(str(notification.id))], queue="notify-internal-tasks"
|
||||
[(str(notification.id))], queue="notify-internal-tasks", countdown=30
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user