Skip to content

Commit a016f1a

Browse files
committed
fix: set correct paths to data files
1 parent 7e81174 commit a016f1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_integration/test_workspace_io.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
from structurizr import Workspace, WorkspaceIO
2626

2727

28-
DEFINITIONS = Path("data") / "workspace_definition"
28+
DEFINITIONS = Path(__file__).parent / "data" / "workspace_definition"
2929
EXAMPLES = Path(__file__).parent.parent.parent / "examples"
30-
VALIDATIONS = Path("data") / "workspace_validation"
30+
VALIDATIONS = Path(__file__).parent / "data" / "workspace_validation"
3131

3232

3333
def pytest_generate_tests(metafunc) -> None:

0 commit comments

Comments
 (0)