chore: fix a linting error (#834)

Signed-off-by: Tim Birkett <tim.birkett@sainsburys.co.uk>
This commit is contained in:
Tim Birkett 2022-05-13 10:14:38 +01:00 committed by GitHub
parent 7b1a0d3cd3
commit a5d0cbbe44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8905,14 +8905,14 @@ func TestMethodNotAllowedMock(t *testing.T) {
}
func TestHealthCheck(t *testing.T) {
req, _ := http.NewRequest(http.MethodGet, "/healthz", nil)
req, _ := http.NewRequest(http.MethodGet, healthzPath, nil)
rr := executeRequest(req)
checkResponseCode(t, http.StatusOK, rr)
assert.Equal(t, "ok", rr.Body.String())
}
func TestRobotsTxtCheck(t *testing.T) {
req, _ := http.NewRequest(http.MethodGet, "/robots.txt", nil)
req, _ := http.NewRequest(http.MethodGet, robotsTxtPath, nil)
rr := executeRequest(req)
checkResponseCode(t, http.StatusOK, rr)
assert.Equal(t, "User-agent: *\nDisallow: /", rr.Body.String())