diff options
Diffstat (limited to 'plugin/pkg/healthcheck/policy_test.go')
-rw-r--r-- | plugin/pkg/healthcheck/policy_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugin/pkg/healthcheck/policy_test.go b/plugin/pkg/healthcheck/policy_test.go index ddf5a1415..a9b2dc51b 100644 --- a/plugin/pkg/healthcheck/policy_test.go +++ b/plugin/pkg/healthcheck/policy_test.go @@ -1,8 +1,6 @@ package healthcheck import ( - "io/ioutil" - "log" "net/http" "net/http/httptest" "os" @@ -13,8 +11,6 @@ import ( var workableServer *httptest.Server func TestMain(m *testing.M) { - log.SetOutput(ioutil.Discard) - workableServer = httptest.NewServer(http.HandlerFunc( func(w http.ResponseWriter, r *http.Request) { // do nothing |