Skip to content

Commit c7f86f8

Browse files
committed
fixes test
1 parent 32330bf commit c7f86f8

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

services/web/server/tests/unit/with_dbs/03/version_control/conftest.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,10 @@ def app_environment(
8181
"WEBSERVER_CLUSTERS": "null",
8282
"WEBSERVER_COMPUTATION": "null",
8383
"WEBSERVER_DIAGNOSTICS": "null",
84+
"WEBSERVER_GARBAGE_COLLECTOR": "null",
8485
"WEBSERVER_GROUPS": "0",
8586
"WEBSERVER_PUBLICATIONS": "0",
86-
"WEBSERVER_GARBAGE_COLLECTOR": "null",
87-
"WEBSERVER_EMAIL": "null",
8887
"WEBSERVER_SOCKETIO": "0",
89-
"WEBSERVER_STORAGE": "null",
9088
"WEBSERVER_STUDIES_DISPATCHER": "null",
9189
"WEBSERVER_TAGS": "0",
9290
"WEBSERVER_TRACING": "null",

services/web/server/tests/unit/with_dbs/03/version_control/test_version_control_core.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
# pylint: disable=unused-argument
33
# pylint: disable=unused-variable
44

5-
from typing import Awaitable, Callable
5+
from collections.abc import Awaitable, Callable
66
from uuid import UUID
77

88
import pytest
99
from aiohttp import web
1010
from aiohttp.test_utils import TestClient, make_mocked_request
11-
from faker import Faker
1211
from simcore_service_webserver._constants import RQT_USERID_KEY
1312
from simcore_service_webserver.projects import projects_api
1413
from simcore_service_webserver.projects.models import ProjectDict
@@ -32,7 +31,6 @@ def aiohttp_mocked_request(client: TestClient, user_id: int) -> web.Request:
3231
async def test_workflow(
3332
client: TestClient,
3433
project_uuid: UUID,
35-
faker: Faker,
3634
user_id: int,
3735
user_project: ProjectDict,
3836
aiohttp_mocked_request: web.Request,

0 commit comments

Comments
 (0)