Skip to content

Commit 36b41a5

Browse files
fix
1 parent 9db90be commit 36b41a5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

services/web/server/tests/unit/with_dbs/04/licenses/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ async def pricing_plan_id(
2626
resource_tracker_pricing_plans.insert()
2727
.values(
2828
product_name=osparc_product_name,
29-
display_name="ISolve Thermal",
29+
display_name="VIP Model A",
3030
description="",
31-
classification="TIER",
31+
classification="LICENSE",
3232
is_active=True,
33-
pricing_plan_key="isolve-thermal",
33+
pricing_plan_key="vip-model-a",
3434
)
3535
.returning(resource_tracker_pricing_plans.c.pricing_plan_id)
3636
)

services/web/server/tests/unit/with_dbs/04/licenses/test_licensed_items_rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def mock_licensed_items_purchase_functions(mocker: MockerFixture) -> tuple:
159159
"simcore_service_webserver.licenses._licensed_items_service.get_pricing_plan",
160160
spec=True,
161161
return_value=RutPricingPlanGet.model_validate(
162-
RutPricingPlanGet.model_json_schema()["examples"][1]
162+
RutPricingPlanGet.model_json_schema()["examples"][2]
163163
),
164164
)
165165
mock_get_pricing_unit = mocker.patch(

0 commit comments

Comments
 (0)