client: use constants for http status codes
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
dabc7cdb56
commit
d1817b6135
1 changed files with 2 additions and 2 deletions
|
@ -25,13 +25,13 @@ func TestTLSCloseWriter(t *testing.T) {
|
|||
defer close(chErr)
|
||||
if err := httputils.ParseForm(req); err != nil {
|
||||
chErr <- errors.Wrap(err, "error parsing form")
|
||||
http.Error(w, err.Error(), 500)
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
r, rw, err := httputils.HijackConnection(w)
|
||||
if err != nil {
|
||||
chErr <- errors.Wrap(err, "error hijacking connection")
|
||||
http.Error(w, err.Error(), 500)
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
defer r.Close()
|
||||
|
|
Loading…
Reference in a new issue