Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
rekby committed Aug 6, 2024
1 parent 71aacf2 commit d30d648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sf/http_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
func TestHttpServer(t *testing.T) {
e := fixenv.New(t)
server := HTTPServer(e)
server.Config.Handler = http.HandlerFunc(func(writer http.ResponseWriter, request *http.Request) {
server.Config.Handler = http.HandlerFunc(func(writer http.ResponseWriter, _ *http.Request) {
_, _ = io.WriteString(writer, "OK")
})
resp, err := http.Get(server.URL)
Expand Down

0 comments on commit d30d648

Please sign in to comment.