We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8ec193 commit 9fe66f7Copy full SHA for 9fe66f7
services/web/server/tests/unit/with_dbs/04/products/test_products_handlers.py
@@ -128,13 +128,15 @@ async def test_get_product(
128
],
129
)
130
async def test_get_current_product_ui(
131
+ all_products_names: list[ProductName],
132
product_name: ProductName,
133
logged_user: UserInfoDict,
134
client: TestClient,
135
user_role: UserRole,
136
expected_status_code: int,
137
):
138
assert logged_user["role"] == user_role.value
139
+ assert product_name in all_products_names
140
141
# give access to user to this product
142
assert client.app
0 commit comments