We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1ec12b commit 726f4ceCopy full SHA for 726f4ce
services/storage/tests/unit/test_modules_celery.py
@@ -216,4 +216,6 @@ async def test_listing_task_uuids_contains_submitted_task(
216
assert len(tasks) == 1
217
assert task_uuid == tasks[0].uuid
218
219
- assert task_uuid in await celery_client.list_tasks(task_context)
+ tasks = await celery_client.list_tasks(task_context)
220
+ assert len(tasks) == 1
221
+ assert task_uuid == tasks[0].uuid
0 commit comments