Skip to content

Commit c4974e5

Browse files
committed
fix test
Signed-off-by: Ben Ye <[email protected]>
1 parent 43f0db5 commit c4974e5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

config/http_config_test.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -2023,7 +2023,6 @@ func TestHTTPClientConfig_Marshal(t *testing.T) {
20232023
proxy_url: "http://localhost:8080"
20242024
follow_redirects: false
20252025
enable_http2: false
2026-
http_headers: null
20272026
`, string(actualYAML))
20282027

20292028
// Unmarshalling the YAML should get the same struct in input.
@@ -2040,8 +2039,7 @@ http_headers: null
20402039
"proxy_url":"http://localhost:8080",
20412040
"tls_config":{"insecure_skip_verify":false},
20422041
"follow_redirects":false,
2043-
"enable_http2":false,
2044-
"http_headers":null
2042+
"enable_http2":false
20452043
}`, string(actualJSON))
20462044

20472045
// Unmarshalling the JSON should get the same struct in input.

0 commit comments

Comments
 (0)