@@ -56,6 +56,7 @@ def mocked_notify_project_node_update(mocker: MockerFixture):
5656)
5757async def test_patch_project_node_entrypoint_access (
5858 mock_dynamic_scheduler : None ,
59+ mocked_dynamic_services_interface : dict [str , mock .MagicMock ],
5960 client : TestClient ,
6061 logged_user : UserInfoDict ,
6162 user_project : ProjectDict ,
@@ -78,6 +79,7 @@ async def test_patch_project_node_entrypoint_access(
7879)
7980async def test_patch_project_node (
8081 mock_dynamic_scheduler : None ,
82+ mocked_dynamic_services_interface : dict [str , mock .MagicMock ],
8183 client : TestClient ,
8284 logged_user : UserInfoDict ,
8385 user_project : ProjectDict ,
@@ -231,7 +233,7 @@ async def test_patch_project_node_notifies(
231233 "user_role,expected" , [(UserRole .USER , status .HTTP_204_NO_CONTENT )]
232234)
233235async def test_patch_project_node_inputs_notifies (
234- mocker : MockerFixture ,
236+ mocked_dynamic_services_interface : dict [ str , mock . MagicMock ] ,
235237 client : TestClient ,
236238 logged_user : UserInfoDict ,
237239 user_project : ProjectDict ,
@@ -270,6 +272,7 @@ async def test_patch_project_node_inputs_notifies(
270272 "user_role,expected" , [(UserRole .USER , status .HTTP_204_NO_CONTENT )]
271273)
272274async def test_patch_project_node_inputs_with_data_type_change (
275+ mocked_dynamic_services_interface : dict [str , mock .MagicMock ],
273276 client : TestClient ,
274277 logged_user : UserInfoDict ,
275278 user_project : ProjectDict ,
0 commit comments