(t *testing.T)
| 90 | } |
| 91 | |
| 92 | func restoreGlobalProxyClient(t *testing.T) { |
| 93 | t.Helper() |
| 94 | |
| 95 | prev := client.Load() |
| 96 | t.Cleanup(func() { |
| 97 | WithClient(prev) |
| 98 | }) |
| 99 | } |
| 100 | |
| 101 | // go test -run Test_Proxy_DefaultClient_MaxConnsPerHost |
| 102 | func Test_Proxy_DefaultClient_MaxConnsPerHost(t *testing.T) { |
no test coverage detected