Skip to content

Commit 561f4c1

Browse files
committed
chore: remove deprecated use of sets
Signed-off-by: Chris Privitere <23177737+cprivitere@users.noreply.github.com>
1 parent 99a22e8 commit 561f4c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/common_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ func (wc *wrappedClient) IsObjectNamespaced(obj runtime.Object) (namespaced bool
6565
type wrappedClusterProxy struct {
6666
clusterProxy framework.ClusterProxy
6767

68-
clusterNames sets.String
68+
clusterNames sets.Set[string]
6969
}
7070

7171
func NewWrappedClusterProxy(name string, kubeconfigPath string, scheme *runtime.Scheme, options ...framework.Option) *wrappedClusterProxy {
7272
return &wrappedClusterProxy{
7373
clusterProxy: framework.NewClusterProxy(name, kubeconfigPath, scheme, options...),
74-
clusterNames: sets.NewString(),
74+
clusterNames: sets.New[string](),
7575
}
7676
}
7777

0 commit comments

Comments
 (0)