From 6eb8a075558618e049897b032c692972e5ab6379 Mon Sep 17 00:00:00 2001 From: emdavis02 Date: Wed, 8 May 2024 14:42:28 -0700 Subject: [PATCH] path string --- tests/test_series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_series.py b/tests/test_series.py index b0d7a6b..c6a930e 100644 --- a/tests/test_series.py +++ b/tests/test_series.py @@ -66,7 +66,7 @@ def test_primary_prediction_not_found(tmp_path): # Create a dummy Series instance with a non-existent primary prediction file output = io.StringIO() with redirect_stdout(output): - Series.load(h5_path=str(dummy_video_path), primary_name="nonexistent") + 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("")