Skip to content

Commit 6486b61

Browse files
fix missing param
1 parent 6a198c5 commit 6486b61

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

services/director-v2/tests/unit/with_dbs/comp_scheduler/test_api_route_computations.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -940,7 +940,11 @@ async def test_get_computation_from_published_computation_task(
940940
dag_adjacency_list=fake_workbench_adjacency,
941941
)
942942
comp_tasks = await create_tasks(
943-
user=user, project=proj, state=StateType.PUBLISHED, progress=0
943+
user=user,
944+
project=proj,
945+
workbench=fake_workbench_without_outputs,
946+
state=StateType.PUBLISHED,
947+
progress=0,
944948
)
945949
comp_runs = await create_comp_run(
946950
user=user, project=proj, result=StateType.PUBLISHED

0 commit comments

Comments
 (0)