Skip to content

Commit

Permalink
as_possix
Browse files Browse the repository at this point in the history
  • Loading branch information
emdavis02 committed May 8, 2024
1 parent 6492de7 commit ceb9570
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ def test_primary_prediction_not_found(tmp_path):
Series.load(h5_path=dummy_video_path, primary_name="nonexistent")

# format file path string for assert statement
new_file_path = Path(dummy_video_path).with_suffix("")
new_file_path = Path(dummy_video_path).with_suffix("").as_posix()
print(new_file_path)

assert (
output.getvalue()
Expand All @@ -87,7 +88,7 @@ def test_lateral_prediction_not_found(tmp_path):
Series.load(h5_path=dummy_video_path, lateral_name="nonexistent")

# format file path string for assert statement
new_file_path = Path(dummy_video_path).with_suffix("")
new_file_path = Path(dummy_video_path).with_suffix("").as_posix()

assert (
output.getvalue()
Expand All @@ -105,7 +106,7 @@ def test_crown_prediction_not_found(tmp_path):
Series.load(h5_path=dummy_video_path, crown_name="nonexistent")

# format file path string for assert statement
new_file_path = Path(dummy_video_path).with_suffix("")
new_file_path = Path(dummy_video_path).with_suffix("").as_posix()

assert (
output.getvalue()
Expand Down

0 comments on commit ceb9570

Please sign in to comment.