Skip to content

Commit

Permalink
test_caga: changed the way the folders are resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaasRostock committed Feb 22, 2024
1 parent 6b526d7 commit 6c93a02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/types/test_caga.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

def test_publish_schema():
# Prepare
target_dir: Path = Path("../../src/maritime_schema/schema/caga")
docs_dir: Path = Path("../../docs/source/schema/caga")
target_dir: Path = Path(__file__).parent.parent.parent / "src/maritime_schema/schema/caga"
docs_dir: Path = Path(__file__).parent.parent.parent / "docs/source/schema/caga"
input_schema_json_file: Path = target_dir / "input_schema.json"
input_schema_html_file: Path = docs_dir / "input_schema.html"
output_schema_json_file: Path = target_dir / "output_schema.json"
Expand Down

0 comments on commit 6c93a02

Please sign in to comment.