ca: fixed broken tests

pull/865/merge
Panagiotis Siatras 2 years ago
parent 23c81db95a
commit 4cdb38b2e8
No known key found for this signature in database
GPG Key ID: 529695F03A572804

@ -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)
}
})

Loading…
Cancel
Save