Skip to content

Commit fe1360e

Browse files
committed
tests are passing
1 parent 79dd257 commit fe1360e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

services/web/server/tests/unit/with_dbs/02/test_projects_nodes_handlers__patch.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def mocked_notify_project_node_update(mocker: MockerFixture):
5656
)
5757
async 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
)
7980
async 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
)
233235
async 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
)
272274
async 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

Comments
 (0)