Skip to content

Commit

Permalink
remove pointer deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
ranakan19 committed Jan 17, 2025
1 parent 5059041 commit a8d2739
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/configuration/cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package configuration
import (
"context"
"fmt"
"k8s.io/utils/pointer"
"sync"
"testing"

Expand Down Expand Up @@ -354,7 +353,7 @@ func TestMultipleExecutionsInParallel(t *testing.T) {
defer waitForFinished.Done()
latch.Wait()
config := NewToolchainConfigObjWithReset(t, testconfig.Members().SpecificPerMemberCluster(fmt.Sprintf("member%d", i), toolchainv1alpha1.MemberOperatorConfigSpec{
Environment: pointer.String(fmt.Sprintf("env%d", i)),
Environment: ptr.To(fmt.Sprintf("env%d", i)),
}))

secretData := map[string]map[string]string{
Expand Down

0 comments on commit a8d2739

Please sign in to comment.