Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkr committed Dec 21, 2024
1 parent 7bb5f7a commit 8eb20b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedtest/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func (w *responseWriter) WriteHeader(statusCode int) {
func (f Client) Do(r *http.Request) (*http.Response, error) {
dst := f[r.URL.Host]
if dst == nil {
return nil, fmt.Errorf("Unknown server: %s", r.URL.Host)
return nil, fmt.Errorf("unknown server: %s", r.URL.Host)
}

w := responseWriter{
Expand Down

0 comments on commit 8eb20b9

Please sign in to comment.