Skip to content

Commit

Permalink
style: make lint
Browse files Browse the repository at this point in the history
  • Loading branch information
samlaf committed Sep 24, 2024
1 parent 970bafe commit 00a95da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion types/operator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ func TestOperatorValidate(t *testing.T) {
}
marshalledOperatorMetadata, err := json.Marshal(operatorMetadata)
require.NoError(t, err)
w.Write(marshalledOperatorMetadata)
_, err = w.Write(marshalledOperatorMetadata)
require.NoError(t, err)
}))
defer ts.Close()
fmt.Println(ts.URL)
Expand Down

0 comments on commit 00a95da

Please sign in to comment.