Skip to content

Commit

Permalink
fix fixture path
Browse files Browse the repository at this point in the history
  • Loading branch information
diitaz93 committed Jan 21, 2025
1 parent 0e2ab30 commit efe8a6a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ def tomte_order_to_submit(cgweb_orders_dir: Path) -> dict:


@pytest.fixture(scope="session")
def invalid_balsamic_order_to_submit(cgweb_orders_dir: Path) -> dict:
def invalid_balsamic_order_to_submit(invalid_cgweb_orders_dir: Path) -> dict:
"""Load an invalid example Balsamic order."""
return ReadFile.get_content_from_file(
file_format=FileFormat.JSON, file_path=Path(cgweb_orders_dir, "balsamic_FAIL.json")
file_format=FileFormat.JSON, file_path=Path(invalid_cgweb_orders_dir, "balsamic_FAIL.json")
)


Expand Down

0 comments on commit efe8a6a

Please sign in to comment.