Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kerenlahav committed Aug 6, 2024
1 parent 687fed7 commit 2e5837a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ var _ = BeforeSuite(func(done Done) {
Client: k8sManager.GetClient(),
Scheme: k8sManager.GetScheme(),
Log: ctrl.Log.WithName("controllers").WithName("ServiceInstance"),
GetSMClient: func(_ context.Context, _ client.Client, _ *v1.ServiceInstance) (sm.Client, error) {
GetSMClient: func(_ context.Context, _ *v1.ServiceInstance) (sm.Client, error) {
return fakeClient, nil
},
Config: testConfig,
Expand All @@ -170,7 +170,7 @@ var _ = BeforeSuite(func(done Done) {
Client: k8sManager.GetClient(),
Scheme: k8sManager.GetScheme(),
Log: ctrl.Log.WithName("controllers").WithName("ServiceBinding"),
GetSMClient: func(_ context.Context, _ client.Client, _ *v1.ServiceInstance) (sm.Client, error) {
GetSMClient: func(_ context.Context, _ *v1.ServiceInstance) (sm.Client, error) {
return fakeClient, nil
},
Config: testConfig,
Expand Down

0 comments on commit 2e5837a

Please sign in to comment.