Update utls test to match uTLS Round Tripper constructor

This commit is contained in:
Shelikhoo 2022-02-11 10:18:52 +00:00
parent 1573502e93
commit f525490032
No known key found for this signature in database
GPG key ID: C4D5E79D22B25316

View file

@ -128,7 +128,7 @@ func TestRoundTripper(t *testing.T) {
t.Run("Testing fingerprint for "+v.name, func(t *testing.T) {
rtter := NewUTLSHTTPRoundTripper(v.id, &utls.Config{
InsecureSkipVerify: true,
}, http.DefaultTransport)
}, http.DefaultTransport, false)
for count := 0; count <= 10; count++ {
Convey("HTTP 1.1 Test", t, func(c C) {