From a4d4ef0e7f6799aa7b4763c1b7b37493b537526d Mon Sep 17 00:00:00 2001 From: CarolinePascal Date: Fri, 11 Apr 2025 18:51:58 +0200 Subject: [PATCH] fix: fixing typos --- tests/datasets/test_compute_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/datasets/test_compute_stats.py b/tests/datasets/test_compute_stats.py index 1a18e14fa..71bc4d65d 100644 --- a/tests/datasets/test_compute_stats.py +++ b/tests/datasets/test_compute_stats.py @@ -89,7 +89,7 @@ def test_sample_audio_from_path(mock_load): assert len(audio_samples) == estimate_num_samples(16000) -def test_sample_audio_from_data(mock_load): +def test_sample_audio_from_data(): audio_data = np.ones((16000, 2), dtype=np.float32) audio_samples = sample_audio_from_data(audio_data) assert isinstance(audio_samples, np.ndarray)