@@ -1056,7 +1056,7 @@ func TestClusterScopeDynamicAirway(t *testing.T) {
10561056 require .NoError (t , client .EnsureNamespace (context .Background (), ns ))
10571057 }
10581058
1059- testIntf := k8s .TypedInterface [EmptyCRD ](client . Dynamic , schema.GroupVersionResource {
1059+ testIntf := k8s .TypedInterface [EmptyCRD ](client , schema.GroupVersionResource {
10601060 Group : "examples.com" ,
10611061 Version : "v1" ,
10621062 Resource : "tests" ,
@@ -2219,7 +2219,7 @@ func TestDynamicWithExternalResource(t *testing.T) {
22192219 configMapIntf := client .Clientset .CoreV1 ().ConfigMaps ("default" )
22202220
22212221 backendIntf := k8s .
2222- TypedInterface [EmptyCRD ](client . Dynamic , schema.GroupVersionResource {
2222+ TypedInterface [EmptyCRD ](client , schema.GroupVersionResource {
22232223 Group : "examples.com" ,
22242224 Version : "v1" ,
22252225 Resource : "backends" ,
@@ -2383,7 +2383,7 @@ func TestExternalDynamicCreateEvent(t *testing.T) {
23832383 configmapIntf := client .Clientset .CoreV1 ().ConfigMaps ("default" )
23842384
23852385 cloneIntf := k8s .
2386- TypedInterface [CopyJob ](client . Dynamic , schema.GroupVersionResource {
2386+ TypedInterface [CopyJob ](client , schema.GroupVersionResource {
23872387 Group : "examples.com" ,
23882388 Version : "v1" ,
23892389 Resource : "clones" ,
@@ -2544,7 +2544,7 @@ func TestStatusUpdates(t *testing.T) {
25442544 Resource : "backends" ,
25452545 }
25462546
2547- backendIntf := k8s .TypedInterface [CR ](client . Dynamic , backendGVR ).Namespace ("default" )
2547+ backendIntf := k8s .TypedInterface [CR ](client , backendGVR ).Namespace ("default" )
25482548
25492549 cases := []struct {
25502550 Name string
@@ -2783,7 +2783,7 @@ func TestDeploymentStatus(t *testing.T) {
27832783 Resource : "backends" ,
27842784 }
27852785
2786- backendIntf := k8s .TypedInterface [CR ](client . Dynamic , backendGVR ).Namespace ("default" )
2786+ backendIntf := k8s .TypedInterface [CR ](client , backendGVR ).Namespace ("default" )
27872787
27882788 be := & CR {
27892789 TypeMeta : metav1.TypeMeta {
@@ -3311,7 +3311,7 @@ func TestTimeout(t *testing.T) {
33113311 }()
33123312
33133313 timeoutIntf := k8s .
3314- TypedInterface [EmptyCRD ](client . Dynamic , schema.GroupVersionResource {
3314+ TypedInterface [EmptyCRD ](client , schema.GroupVersionResource {
33153315 Group : "examples.com" ,
33163316 Version : "v1" ,
33173317 Resource : "timeouts" ,
@@ -3403,7 +3403,7 @@ func TestSubscriptionMode(t *testing.T) {
34033403 )
34043404 }()
34053405
3406- subIntf := k8s .TypedInterface [EmptyCRD ](client . Dynamic , schema.GroupVersionResource {
3406+ subIntf := k8s .TypedInterface [EmptyCRD ](client , schema.GroupVersionResource {
34073407 Group : "example.com" ,
34083408 Version : "v1" ,
34093409 Resource : "subscriptions" ,
@@ -3568,7 +3568,7 @@ func TestValidationCycle(t *testing.T) {
35683568
35693569 require .NoError (t , client .EnsureNamespace (context .Background (), "foo" ))
35703570
3571- backendIntf := k8s .TypedInterface [backendv1.Backend ](client . Dynamic , schema.GroupVersionResource {
3571+ backendIntf := k8s .TypedInterface [backendv1.Backend ](client , schema.GroupVersionResource {
35723572 Resource : "backends" ,
35733573 Group : "examples.com" ,
35743574 Version : "v1" ,
@@ -3682,7 +3682,7 @@ func TestIdentityWithError(t *testing.T) {
36823682 Version : "v1" ,
36833683 }
36843684
3685- testIntf := k8s .TypedInterface [CR ](client . Dynamic , testGVR ).Namespace ("default" )
3685+ testIntf := k8s .TypedInterface [CR ](client , testGVR ).Namespace ("default" )
36863686
36873687 test , err := testIntf .Create (
36883688 context .Background (),
@@ -3798,7 +3798,7 @@ func TestInvalidFlightURL(t *testing.T) {
37983798 Resource : "backends" ,
37993799 }
38003800
3801- backendIntf := k8s .TypedInterface [backendv1.Backend ](client . Dynamic , backendGVR ).Namespace ("default" )
3801+ backendIntf := k8s .TypedInterface [backendv1.Backend ](client , backendGVR ).Namespace ("default" )
38023802
38033803 be , err := backendIntf .Create (
38043804 context .Background (),
@@ -3890,7 +3890,7 @@ func TestInvalidChecksum(t *testing.T) {
38903890 Resource : "backends" ,
38913891 }
38923892
3893- backendIntf := k8s .TypedInterface [backendv1.Backend ](client . Dynamic , backendGVR ).Namespace ("default" )
3893+ backendIntf := k8s .TypedInterface [backendv1.Backend ](client , backendGVR ).Namespace ("default" )
38943894
38953895 be , err := backendIntf .Create (
38963896 context .Background (),
0 commit comments