Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Anis SMAIL committed Jan 28, 2025
1 parent 09ebc5b commit 132e11a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/storage/business/test_raw_study_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,10 @@ def test_create(tmp_path_posix: Path, project_path: Path) -> None:
print("tmp_path_posix", tmp_path_posix)
assert md.path == str(tmp_path_posix / "study1")
path_study = tmp_path_posix / md.id
assert path_study.exists()
path_stud_os_specifix = Path(path_study)
assert path_stud_os_specifix.exists()

path_study_antares_infos = path_study / "study.antares"
path_study_antares_infos = path_stud_os_specifix / "study.antares"
assert path_study_antares_infos.is_file()


Expand Down

0 comments on commit 132e11a

Please sign in to comment.