Skip to content

Commit 5b226d1

Browse files
authored
🐛E2E: --product-url is an url not a string (#5972)
1 parent b136bac commit 5b226d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e-playwright/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def pytest_runtest_makereport(item: Item, call):
141141
if call.when == "call" and call.excinfo is not None:
142142
test_name = item.name
143143
test_location = item.location
144-
product_url = item.config.getoption("--product-url", default=None)
144+
product_url = f"{item.config.getoption('--product-url', default=None)}"
145145

146146
diagnostics = {
147147
"test_name": test_name,

0 commit comments

Comments
 (0)