From 55e6cd481628484873d705b2e5d9a5767815f643 Mon Sep 17 00:00:00 2001 From: Daniel Carrillo Date: Sat, 22 Jul 2023 13:20:17 +0200 Subject: [PATCH] Update test to latest quic version --- integration-tests/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/integration_test.go b/integration-tests/integration_test.go index 2716094..77a8ec0 100644 --- a/integration-tests/integration_test.go +++ b/integration-tests/integration_test.go @@ -119,7 +119,7 @@ func TestContainerIntegration(t *testing.T) { resp, _ = client.Do(req) body, err = io.ReadAll(resp.Body) if strings.Contains(tt.url, "https://") { - assert.Equal(t, `h3=":8001"; ma=2592000,h3-29=":8001"; ma=2592000`, resp.Header.Get("Alt-Svc")) + assert.Equal(t, `h3=":8001"; ma=2592000`, resp.Header.Get("Alt-Svc")) } } assert.NoError(t, err)