Skip to content

Commit

Permalink
🐛E2E: --product-url is an url not a string (#5972)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg authored Jun 20, 2024
1 parent b136bac commit 5b226d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e-playwright/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def pytest_runtest_makereport(item: Item, call):
if call.when == "call" and call.excinfo is not None:
test_name = item.name
test_location = item.location
product_url = item.config.getoption("--product-url", default=None)
product_url = f"{item.config.getoption('--product-url', default=None)}"

diagnostics = {
"test_name": test_name,
Expand Down

0 comments on commit 5b226d1

Please sign in to comment.