From 736b045689255337995a34ed66a28b2ebe866ba2 Mon Sep 17 00:00:00 2001 From: Zhichao Date: Mon, 5 Aug 2024 14:55:30 +0800 Subject: [PATCH] remove the test for empty list of frames --- tests/unit/tools/test_tools.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/unit/tools/test_tools.py b/tests/unit/tools/test_tools.py index 4cc1e9af..b2f1a87a 100644 --- a/tests/unit/tools/test_tools.py +++ b/tests/unit/tools/test_tools.py @@ -23,9 +23,3 @@ def test_saves_frames_with_output_path(self, tmp_path): assert output_path == video_output_path assert Path(output_path).exists() - - # Handles an empty list of frames gracefully - def test_handles_empty_frames_list(self): - frames = [] - output_path = save_video(frames) - assert Path(output_path).exists()