From d634a7a2c077f74a04417ec8785331d2ad2a80e8 Mon Sep 17 00:00:00 2001 From: qvalentin Date: Wed, 8 May 2024 13:59:44 +0200 Subject: [PATCH] fix: increase timeout for hover yamlls integration test --- internal/adapter/yamlls/hover_integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/adapter/yamlls/hover_integration_test.go b/internal/adapter/yamlls/hover_integration_test.go index c4b97754..82d27a3f 100644 --- a/internal/adapter/yamlls/hover_integration_test.go +++ b/internal/adapter/yamlls/hover_integration_test.go @@ -73,7 +73,7 @@ func TestYamllsHoverIntegration(t *testing.T) { }, }, tt.word) return err == nil && strings.Contains(result.Contents.Value, tt.expected) - }, time.Second*10, time.Second/2) + }, time.Second*60, time.Second*5) }) } }