Made celery task arg a tuple

This commit is contained in:
Ken Tsang
2017-08-23 18:05:48 +01:00
parent 7aaef8fc09
commit 451c5a9f1a
2 changed files with 2 additions and 2 deletions

View File

@@ -696,5 +696,5 @@ def test_run_letter_jobs(client, mocker, sample_letter_template):
run_letter_jobs()
mock_celery.assert_called_once_with(name=TaskNames.DVLA_FILES,
args=([job.id for job in jobs]),
args=([job.id for job in jobs],),
queue=QueueNames.PROCESS_FTP)