mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-02 08:25:15 -05:00
Fix serialisation error when creating the create_letters_pdf in resend_created_notifications_older_than
This commit is contained in:
@@ -329,8 +329,8 @@ def test_replay_created_notifications_create_letters_pdf_tasks_for_letters_not_r
|
||||
|
||||
replay_created_notifications()
|
||||
|
||||
calls = [call([notification_1.id], queue=QueueNames.LETTERS),
|
||||
call([notification_2.id], queue=QueueNames.LETTERS),
|
||||
calls = [call([str(notification_1.id)], queue=QueueNames.LETTERS),
|
||||
call([str(notification_2.id)], queue=QueueNames.LETTERS),
|
||||
]
|
||||
mock_task.assert_has_calls(calls, any_order=True)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user