Skip to content

Commit

Permalink
#75 Fixed the integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Nov 1, 2024
1 parent bc4e81a commit ae78bc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pytest-backend/exasol/pytest_backend/project_short_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def _find_path_backwards(start_path: str | Path,
path and so on, until it either reaches the root of the file structure or finds the
stop file. returns None if the search is unsuccessful.
"""
current_path = Path(start_path).parent
current_path = Path(start_path)
root = Path(current_path.root)
while current_path != root:
result_path = Path(current_path, target_path)
Expand Down
2 changes: 1 addition & 1 deletion pytest-saas/exasol/pytest_saas/project_short_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def _find_path_backwards(start_path: str | Path,
path and so on, until it either reaches the root of the file structure or finds the
stop file. returns None if the search is unsuccessful.
"""
current_path = Path(start_path).parent
current_path = Path(start_path)
root = Path(current_path.root)
while current_path != root:
result_path = Path(current_path, target_path)
Expand Down

0 comments on commit ae78bc6

Please sign in to comment.