From bfb3494c06ca29514e996f00e10d922013b59c9f Mon Sep 17 00:00:00 2001 From: James Blair Date: Sun, 10 Sep 2023 21:02:38 +1200 Subject: [PATCH] Remove obsolete http 1.0 version. From TestConnectionMultiplexing to ensure the test will run successfully in Debian 12. Signed-off-by: James Blair --- tests/e2e/cmux_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/cmux_test.go b/tests/e2e/cmux_test.go index 4286a3e5c22..32cf82a1c68 100644 --- a/tests/e2e/cmux_test.go +++ b/tests/e2e/cmux_test.go @@ -132,7 +132,7 @@ func testConnectionMultiplexing(ctx context.Context, t *testing.T, member etcdPr assert.NoError(t, err) }) t.Run("curl", func(t *testing.T) { - for _, httpVersion := range []string{"2", "1.1", "1.0", ""} { + for _, httpVersion := range []string{"2", "1.1", ""} { tname := "http" + httpVersion if httpVersion == "" { tname = "default"