We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6991b39 commit 3d8c06cCopy full SHA for 3d8c06c
services/web/server/tests/unit/with_dbs/03/invitations/conftest.py
@@ -29,7 +29,8 @@
29
InvitationsSettings,
30
get_plugin_settings,
31
)
32
-from simcore_service_webserver.products.products_models import Product, list_products
+from simcore_service_webserver.products import products_service
33
+from simcore_service_webserver.products.products_models import Product
34
from yarl import URL
35
36
@@ -52,7 +53,7 @@ def invitations_service_openapi_specs(
52
53
@pytest.fixture
54
def current_product(client: TestClient) -> Product:
55
assert client.app
- products = list_products(client.app)
56
+ products = products_service.list_products(client.app)
57
assert products
58
assert products[0].name == "osparc"
59
return products[0]
0 commit comments