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 bc2f32d commit fdcd703Copy full SHA for fdcd703
services/web/server/tests/unit/with_dbs/01/test_director_v2_handlers.py
@@ -181,9 +181,11 @@ def mock_rpc_list_computations_latest_iteration_tasks_page(
181
mocker: MockerFixture,
182
user_project: ProjectDict,
183
) -> ComputationTaskRpcGetPage:
184
+ project_uuid = user_project["uuid"]
185
workbench_ids = list(user_project["workbench"].keys())
186
example = ComputationTaskRpcGet.model_config["json_schema_extra"]["examples"][0]
187
example["node_id"] = workbench_ids[0]
188
+ example["project_uuid"] = project_uuid
189
190
return mocker.patch(
191
"simcore_service_webserver.director_v2._computations_service.computations.list_computations_latest_iteration_tasks_page",
0 commit comments