From fc0de4eec24c1055f6b6a8e8e0d3fce2c5f56732 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Fri, 23 May 2025 19:06:38 +0200 Subject: [PATCH] More edge case testing --- tests/test_ffmpeg.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_ffmpeg.py b/tests/test_ffmpeg.py index a751f0a..7c23c86 100644 --- a/tests/test_ffmpeg.py +++ b/tests/test_ffmpeg.py @@ -97,7 +97,10 @@ def test_merge_video() -> None: create_temp_directory(target_path) extract_frames(target_path, '452x240', 25.0, 0, 1) - assert merge_video(target_path, 25.0, '452x240', 25.0, 0, 1) is True + #assert merge_video(target_path, 25.0, '452x240', 25.0, 0, 1) is True + + if merge_video(target_path, 25.0, '452x240', 25.0, 0, 1) is False: + assert 'this does not work' == output_video_encoder clear_temp_directory(target_path)