Unnecessary check around range

pull/53/head
Philipp Heckel 2021-12-07 15:43:51 -05:00
parent 40fbce07db
commit c9f1b02251
1 changed files with 2 additions and 4 deletions

View File

@ -129,11 +129,9 @@ func request(t *testing.T, s *Server, method, url, body string, headers map[stri
if err != nil {
t.Fatal(err)
}
if headers != nil {
for k, v := range headers {
req.Header.Set(k, v)
}
}
s.handle(rr, req)
return rr
}