From 07f6ce0f2c45d294536bfe268ff9a34acf1606c4 Mon Sep 17 00:00:00 2001 From: Eno Compton Date: Wed, 13 Jul 2022 14:50:54 -0600 Subject: [PATCH] chore: increase wait time in test (#69) --- internal/proxy/proxy_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/proxy/proxy_test.go b/internal/proxy/proxy_test.go index 7f5ed3fccd..79bbb7dbb6 100644 --- a/internal/proxy/proxy_test.go +++ b/internal/proxy/proxy_test.go @@ -280,7 +280,7 @@ func TestClientLimitsMaxConnections(t *testing.T) { if got == io.EOF { return } - time.Sleep(100 * time.Millisecond) + time.Sleep(500 * time.Millisecond) } t.Fatalf("conn.Read should return io.EOF, got = %v", got) }