From cf9c624f5972f7e111f8d8a7e227fd14c4bf7456 Mon Sep 17 00:00:00 2001 From: J C Date: Tue, 12 Apr 2016 13:22:49 -0700 Subject: [PATCH] Up the timeout time for speech streaming test. speech api is apparently variable in its response time. --- speech/api/speech_streaming_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speech/api/speech_streaming_test.py b/speech/api/speech_streaming_test.py index b5fd89c06897..ca3fe97a1054 100644 --- a/speech/api/speech_streaming_test.py +++ b/speech/api/speech_streaming_test.py @@ -60,7 +60,7 @@ def test_main(resource, monkeypatch, capsys): monkeypatch.setattr( speech_streaming, 'record_audio', mock_audio_stream(resource('quit.raw'))) - monkeypatch.setattr(speech_streaming, 'DEADLINE_SECS', 5) + monkeypatch.setattr(speech_streaming, 'DEADLINE_SECS', 10) speech_streaming.main() out, err = capsys.readouterr()