Skip to content

Commit 79dd257

Browse files
committed
fix test
1 parent 1223c8b commit 79dd257

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import json
1010
from http import HTTPStatus
11+
from unittest import mock
1112

1213
import pytest
1314
from aiohttp.test_utils import TestClient
@@ -197,14 +198,14 @@ async def test_patch_project_node(
197198
)
198199
async def test_patch_project_node_notifies(
199200
mocker: MockerFixture,
201+
mocked_dynamic_services_interface: dict[str, mock.MagicMock],
200202
client: TestClient,
201203
logged_user: UserInfoDict,
202204
user_project: ProjectDict,
203205
expected: HTTPStatus,
204206
mock_catalog_rpc_check_for_service,
205207
mocked_notify_project_node_update,
206208
):
207-
208209
node_id = next(iter(user_project["workbench"]))
209210
assert client.app
210211
base_url = client.app.router["patch_project_node"].url_for(

0 commit comments

Comments
 (0)