test: h2client_2_2
All checks were successful
CI / build (push) Successful in 48s

This commit is contained in:
Fijxu 2025-02-17 02:22:53 -03:00
parent 248d076f47
commit a03d265259
Signed by: Fijxu
GPG key ID: 32C1DDF333EDA6A4

View file

@ -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