From a03d2652590364f14cf8586a259e50fcb095a864 Mon Sep 17 00:00:00 2001 From: Fijxu Date: Mon, 17 Feb 2025 02:22:53 -0300 Subject: [PATCH] test: h2client_2_2 --- main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.go b/main.go index ee6646f..de7d7a3 100644 --- a/main.go +++ b/main.go @@ -25,7 +25,6 @@ import ( "github.com/prometheus/procfs" "github.com/quic-go/quic-go" "github.com/quic-go/quic-go/http3" - "golang.org/x/net/http2" ) var ( @@ -79,7 +78,7 @@ var h2client = &http.Client{ var h2client_test = &http.Client{ // Yeah I know I can just use http.Transport and it will use HTTP/2 automatically // I prefer to set it up explicitly - Transport: &http2.Transport{}, + Transport: &http.Transport{}, } var client *http.Client