From 39b328031d83262ec15e13b5b00272241b3a2406 Mon Sep 17 00:00:00 2001 From: Mike Evans Date: Tue, 10 Oct 2023 08:14:56 +0100 Subject: [PATCH] Update the file count assert in test_list_audio_files() --- tests/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_api.py b/tests/test_api.py index d28c733..b3e4917 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -44,7 +44,7 @@ def test_list_audio_files(): """Test listing audio files.""" audio_files = api.list_audio_files(TEST_DATA_DIR) - assert len(audio_files) == 3 + assert len(audio_files) == 4 assert all(path.endswith((".wav", ".WAV")) for path in audio_files)