Pass http.NoBody instead of nil as body

This commit is contained in:
TwiN
2021-11-11 00:14:00 -05:00
parent 05e9add16d
commit 17a431321c
8 changed files with 9 additions and 9 deletions

View File

@ -34,7 +34,7 @@ func TestHandle(t *testing.T) {
defer os.Clearenv()
Handle(cfg.Security, cfg.Web, cfg.UI, cfg.Metrics)
defer Shutdown()
request, _ := http.NewRequest("GET", "/health", nil)
request, _ := http.NewRequest("GET", "/health", http.NoBody)
responseRecorder := httptest.NewRecorder()
server.Handler.ServeHTTP(responseRecorder, request)
if responseRecorder.Code != http.StatusOK {