Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
sonu27 committed May 11, 2024
1 parent 6d70edd commit ac350e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/updater/bing/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const bingResponse = `{
}`

func TestClient_List(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte(bingResponse))
require.Nil(t, err)
}))
Expand Down

0 comments on commit ac350e5

Please sign in to comment.