From 172790de79dc2dc9857ac639ed9c833204dd7d51 Mon Sep 17 00:00:00 2001 From: James Richardson Date: Sun, 8 Sep 2024 12:16:01 +0100 Subject: [PATCH] use correct type --- tests/test_ffmpeg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_ffmpeg.py b/tests/test_ffmpeg.py index a40f92a..097e98a 100644 --- a/tests/test_ffmpeg.py +++ b/tests/test_ffmpeg.py @@ -235,8 +235,8 @@ def test_ffmpeg_overlay_execute_options(): ffmpeg = FFMPEGOverlayVideo( ffmpeg=FFMPEG(), - input="input", - output="output", + input=Path("input"), + output=Path("output"), options=FFMPEGOptions(input=["-input-option"], output=["-output-option"]), overlay_size=Dimension(3, 4), execution=fake,