@@ -1519,7 +1519,7 @@ endpoint_params:
15191519 require .Truef (t , reflect .DeepEqual (unmarshalledConfig , expectedConfig ), "Got unmarshalled config %v, expected %v" , unmarshalledConfig , expectedConfig )
15201520
15211521 secret := NewInlineSecret (string (expectedConfig .ClientSecret ))
1522- rt := NewOAuth2RoundTripper (secret , & expectedConfig , http .DefaultTransport , & defaultHTTPClientOptions )
1522+ rt := NewOAuth2RoundTripper (secret , & expectedConfig , http .DefaultTransport )
15231523
15241524 client := http.Client {
15251525 Transport : rt ,
@@ -1654,7 +1654,7 @@ endpoint_params:
16541654 require .Truef (t , reflect .DeepEqual (unmarshalledConfig , expectedConfig ), "Got unmarshalled config %v, expected %v" , unmarshalledConfig , expectedConfig )
16551655
16561656 secret := NewFileSecret (expectedConfig .ClientSecretFile )
1657- rt := NewOAuth2RoundTripper (secret , & expectedConfig , http .DefaultTransport , & defaultHTTPClientOptions )
1657+ rt := NewOAuth2RoundTripper (secret , & expectedConfig , http .DefaultTransport )
16581658
16591659 client := http.Client {
16601660 Transport : rt ,
@@ -1768,7 +1768,7 @@ endpoint_params:
17681768 require .Truef (t , reflect .DeepEqual (unmarshalledConfig , expectedConfig ), "Got unmarshalled config %v, expected %v" , unmarshalledConfig , expectedConfig )
17691769
17701770 clientCertificateKey := NewFileSecret (expectedConfig .ClientCertificateKeyFile )
1771- rt := NewOAuth2RoundTripper (clientCertificateKey , & expectedConfig , http .DefaultTransport , & defaultHTTPClientOptions )
1771+ rt := NewOAuth2RoundTripper (clientCertificateKey , & expectedConfig , http .DefaultTransport )
17721772
17731773 client := http.Client {
17741774 Transport : rt ,
0 commit comments