Skip to content

Commit

Permalink
chore(test): Fix test tracing image option name
Browse files Browse the repository at this point in the history
  • Loading branch information
alithethird committed Jan 9, 2025
1 parent 484f191 commit f547d3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/integration/django/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ def cwd():
@pytest.fixture(scope="module", name="django_tracing_app_image")
def fixture_django_tracing_app_image(pytestconfig: Config):
"""Return the --django-tracing-app-image test parameter."""
image = pytestconfig.getoption("--django-app-tracing-image")
image = pytestconfig.getoption("--django-tracing-app-image")
if not image:
raise ValueError("the following arguments are required: --django-app-tracing-image")
raise ValueError("the following arguments are required: --django-tracing-app-image")
return image


Expand Down
8 changes: 4 additions & 4 deletions tests/integration/go/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ def cwd():
return os.chdir(PROJECT_ROOT / "examples/go/charm")


@pytest.fixture(scope="module", name="go_app_tracing_image")
@pytest.fixture(scope="module", name="go_tracing_app_image")
def fixture_go_tracing_app_image(pytestconfig: Config):
"""Return the --go-app-image test parameter."""
image = pytestconfig.getoption("--go-app-tracing-image")
"""Return the --go-tracing-app-image test parameter."""
image = pytestconfig.getoption("--go-tracing-app-image")
if not image:
raise ValueError("the following arguments are required: --go-app-tracing-image")
raise ValueError("the following arguments are required: --go-tracing-app-image")
return image


Expand Down

0 comments on commit f547d3a

Please sign in to comment.