diff --git a/test/unit/agents/test_vad_streaming.py b/test/unit/agents/test_vad_streaming.py index 47e8332..45ed77e 100644 --- a/test/unit/agents/test_vad_streaming.py +++ b/test/unit/agents/test_vad_streaming.py @@ -74,6 +74,9 @@ async def simulate_streaming_with_probabilities(streaming, probabilities: list[f @pytest.mark.asyncio async def test_voice_activity_detected(audio_in_socket, audio_out_socket, streaming): + """ + Test a scenario where there is voice activity detected between silences. + """ speech_chunk_count = 5 probabilities = [0.0] * 5 + [1.0] * speech_chunk_count + [0.0] * 5 await simulate_streaming_with_probabilities(streaming, probabilities)