ca: fixed broken tests

This commit is contained in:
Panagiotis Siatras 2022-03-21 18:50:12 +02:00
parent 23c81db95a
commit 4cdb38b2e8
No known key found for this signature in database
GPG key ID: 529695F03A572804

View file

@ -569,9 +569,9 @@ func TestClient_RenewWithToken(t *testing.T) {
srv.Config.Handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
if req.Header.Get("Authorization") != "Bearer token" {
api.JSONStatus(w, errs.InternalServer("force"), 500)
render.JSONStatus(w, errs.InternalServer("force"), 500)
} else {
api.JSONStatus(w, tt.response, tt.responseCode)
render.JSONStatus(w, tt.response, tt.responseCode)
}
})