Skip to content

Commit

Permalink
chore: Fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Rüger <[email protected]>
  • Loading branch information
mrueg committed Jun 28, 2023
1 parent 29bc86b commit d74fe84
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion pkg/app/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ func (f *fooFactory) Name() string {
}

// CreateClient use fake client set to establish 10 foos.
func (f *fooFactory) CreateClient(cfg *rest.Config) (interface{}, error) {
func (f *fooFactory) CreateClient(_ *rest.Config) (interface{}, error) {
fooClient := samplefake.NewSimpleClientset()
for i := 0; i < 10; i++ {
err := foo(fooClient, i)
Expand Down
20 changes: 10 additions & 10 deletions pkg/builder/builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ func TestBuilderWithCustomStore(t *testing.T) {
}
}

func customStore(metricFamilies []generator.FamilyGenerator,
expectedType interface{},
listWatchFunc func(kubeClient clientset.Interface, ns string, fieldSelector string) cache.ListerWatcher,
useAPIServerCache bool,
func customStore(_ []generator.FamilyGenerator,
_ interface{},
_ func(kubeClient clientset.Interface, ns string, fieldSelector string) cache.ListerWatcher,
_ bool,
) []cache.Store {
stores := make([]cache.Store, 0, 2)
stores = append(stores, newFakeStore(fakeMetricLists[0]))
Expand All @@ -84,15 +84,15 @@ type fakeStore struct {
metrics []string
}

func (s *fakeStore) Add(obj interface{}) error {
func (s *fakeStore) Add(_ interface{}) error {
return nil
}

func (s *fakeStore) Update(obj interface{}) error {
func (s *fakeStore) Update(_ interface{}) error {
return nil
}

func (s *fakeStore) Delete(obj interface{}) error {
func (s *fakeStore) Delete(_ interface{}) error {
return nil
}

Expand All @@ -109,15 +109,15 @@ func (s *fakeStore) ListKeys() []string {
return nil
}

func (s *fakeStore) Get(obj interface{}) (item interface{}, exists bool, err error) {
func (s *fakeStore) Get(_ interface{}) (item interface{}, exists bool, err error) {
return nil, false, nil
}

func (s *fakeStore) GetByKey(key string) (item interface{}, exists bool, err error) {
func (s *fakeStore) GetByKey(_ string) (item interface{}, exists bool, err error) {
return nil, false, nil
}

func (s *fakeStore) Replace(list []interface{}, _ string) error {
func (s *fakeStore) Replace(_ []interface{}, _ string) error {
return nil
}

Expand Down

0 comments on commit d74fe84

Please sign in to comment.