Skip to content

Commit 14fb319

Browse files
fix: improve readability of skip message for unsupported PCM 8 format
1 parent 976e43a commit 14fb319

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/validation/functional/local/audio/test_ffmpeg_audio.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ def test_local_ffmpeg_audio(
5252

5353
# PCM 8 (pcm_s8) is not supported by the MCM FFmpeg plugin. Skip those cases.
5454
if audio_files_25_03[audio_type]["format"] == "pcm_s8":
55-
pytest.skip("PCM 8 is not supported by Media Communications Mesh FFmpeg plugin!")
55+
pytest.skip(
56+
"PCM 8 is not supported by Media Communications Mesh FFmpeg plugin!"
57+
)
5658

5759
audio_format = audio_file_format_to_format_dict(
5860
str(audio_files_25_03[audio_type]["format"])

0 commit comments

Comments
 (0)