diff --git a/core/dnsserver/server_https_test.go b/core/dnsserver/server_https_test.go index 6663c1075..0099681f7 100644 --- a/core/dnsserver/server_https_test.go +++ b/core/dnsserver/server_https_test.go @@ -61,6 +61,7 @@ func TestCustomHTTPRequestValidator(t *testing.T) { if res.StatusCode != tc.expected { t.Error("unexpected HTTP code", res.StatusCode) } + res.Body.Close() }) } } diff --git a/test/reload_test.go b/test/reload_test.go index 3c701635f..7aee8d037 100644 --- a/test/reload_test.go +++ b/test/reload_test.go @@ -123,6 +123,7 @@ func TestReloadMetricsHealth(t *testing.T) { } const proc = "coredns_build_info" metrics, _ := io.ReadAll(resp.Body) + resp.Body.Close() if !bytes.Contains(metrics, []byte(proc)) { t.Errorf("Failed to see %s in metric output", proc) } @@ -135,6 +136,7 @@ func collectMetricsInfo(addr string, procs ...string) error { return err } metrics, _ := io.ReadAll(resp.Body) + resp.Body.Close() for _, p := range procs { if !bytes.Contains(metrics, []byte(p)) { return fmt.Errorf("failed to see %s in metric output \n%s", p, metrics)