From eb2749fc2f061649f7cda2b8097d5ab0a468ffb8 Mon Sep 17 00:00:00 2001 From: CI Bot Date: Tue, 18 Aug 2026 02:34:08 +0000 Subject: [PATCH] style: auto-format with black + isort + prettier [skip ci-format-check] --- tests/integration/test_full_pipeline.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/tests/integration/test_full_pipeline.py b/tests/integration/test_full_pipeline.py index 152b9fa1a..8f4cff830 100644 --- a/tests/integration/test_full_pipeline.py +++ b/tests/integration/test_full_pipeline.py @@ -125,10 +125,16 @@ class TestFullPipeline: final_path = work_dir / "final.mp4" mux_cmd = [ - "ffmpeg", "-y", - "-i", str(render_result.output_path), - "-i", str(audio_path), - "-c:v", "copy", "-c:a", "aac", + "ffmpeg", + "-y", + "-i", + str(render_result.output_path), + "-i", + str(audio_path), + "-c:v", + "copy", + "-c:a", + "aac", "-shortest", str(final_path), ]