File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,5 +11,4 @@ require (
1111 k8s.io/apimachinery v0.19.2
1212 k8s.io/client-go v0.19.2
1313 k8s.io/klog v1.0.0
14- k8s.io/utils v0.0.0-20200729134348-d5654de09c73
1514)
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ import (
3232 "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
3333 "k8s.io/apimachinery/pkg/runtime/schema"
3434 "k8s.io/apimachinery/pkg/util/intstr"
35- "k8s.io/utils/pointer"
3635)
3736
3837func TestIntegration (t * testing.T ) {
@@ -525,8 +524,10 @@ func TestIntegration(t *testing.T) {
525524 },
526525 }).
527526 withLocalChange (func (i interface {}) {
527+ var replicas int32
528+
528529 pod := i .(* appsv1.Deployment )
529- pod .Spec .Replicas = pointer . Int32Ptr ( 0 )
530+ pod .Spec .Replicas = & replicas
530531 }),
531532 NewTestMatch ("hpa match" ,
532533 & v2beta1.HorizontalPodAutoscaler {
You can’t perform that action at this time.
0 commit comments