Skip to content

Commit 0d954e9

Browse files
committed
make pylint happy
1 parent aef4e20 commit 0d954e9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

services/storage/tests/unit/test__worker_tasks_paths.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ async def _assert_compute_path_size(
5656
expected_total_size: int,
5757
) -> ByteSize:
5858
response = await compute_path_size(
59-
celery_task, user_id=user_id, location_id=location_id, path=path
59+
celery_task,
60+
task_id=celery_task.id,
61+
user_id=user_id,
62+
location_id=location_id,
63+
path=path,
6064
)
6165
assert isinstance(response, ByteSize)
6266
assert response == expected_total_size

0 commit comments

Comments
 (0)