We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43f0db5 commit c4974e5Copy full SHA for c4974e5
config/http_config_test.go
@@ -2023,7 +2023,6 @@ func TestHTTPClientConfig_Marshal(t *testing.T) {
2023
proxy_url: "http://localhost:8080"
2024
follow_redirects: false
2025
enable_http2: false
2026
-http_headers: null
2027
`, string(actualYAML))
2028
2029
// Unmarshalling the YAML should get the same struct in input.
@@ -2040,8 +2039,7 @@ http_headers: null
2040
2039
"proxy_url":"http://localhost:8080",
2041
"tls_config":{"insecure_skip_verify":false},
2042
"follow_redirects":false,
2043
- "enable_http2":false,
2044
- "http_headers":null
+ "enable_http2":false
2045
}`, string(actualJSON))
2046
2047
// Unmarshalling the JSON should get the same struct in input.
0 commit comments