From ef58e627f9d2cd3698bba857d6eca1450278dbb5 Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Tue, 8 Apr 2025 11:44:14 -0600 Subject: [PATCH] test(prompter): timeout for tests is 1s --- internal/prompter/speech_synthesizer_friendly_prompter_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/prompter/speech_synthesizer_friendly_prompter_test.go b/internal/prompter/speech_synthesizer_friendly_prompter_test.go index 64e9ac2fe..d461bf1e4 100644 --- a/internal/prompter/speech_synthesizer_friendly_prompter_test.go +++ b/internal/prompter/speech_synthesizer_friendly_prompter_test.go @@ -33,7 +33,7 @@ func TestSpeechSynthesizerFriendlyPrompter(t *testing.T) { expect.WithCloser(ptm, pts), failOnExpectError(t), failOnSendError(t), - expect.WithDefaultTimeout(time.Second * 600), + expect.WithDefaultTimeout(time.Second), } console, err := expect.NewConsole(consoleOpts...)