Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoaresd committed Jul 23, 2024
1 parent 2f79cf9 commit d6c3d08
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkg/configuration/memberoperatorconfig/mock.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package memberoperatorconfig

import (
"github.com/stretchr/testify/mock"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/rest"
"github.com/stretchr/testify/mock"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/rest"
)

type MockConfigGetter struct {
mock.Mock
mock.Mock
}

func (m *MockConfigGetter) GetCRTConfiguration(config *rest.Config, scheme *runtime.Scheme) (Configuration, error) {
args := m.Called(config, scheme)
return args.Get(0).(Configuration), args.Error(1)
args := m.Called(config, scheme)
return args.Get(0).(Configuration), args.Error(1)
}

0 comments on commit d6c3d08

Please sign in to comment.