From d6c3d08f7f87818de77314d0320bb98d47a14679 Mon Sep 17 00:00:00 2001 From: Rafaela Soares Date: Tue, 23 Jul 2024 14:06:31 +0100 Subject: [PATCH] gofmt --- pkg/configuration/memberoperatorconfig/mock.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/configuration/memberoperatorconfig/mock.go b/pkg/configuration/memberoperatorconfig/mock.go index 13e07b1d..f6a4c64b 100644 --- a/pkg/configuration/memberoperatorconfig/mock.go +++ b/pkg/configuration/memberoperatorconfig/mock.go @@ -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) }