Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamgilbert committed Apr 27, 2024
1 parent f8bd414 commit 44c8c59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tables/sofa/sofa_info_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var testData []byte
func TestDownloadSofaJSON(t *testing.T) {
// start a local HTTP server to serve the test data
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Write(testData)
w.Write(testData) //nolint:errcheck
}))

client := NewSofaClient(WithURL(server.URL))
Expand Down

0 comments on commit 44c8c59

Please sign in to comment.