From 7e6b34d7dda28fa63b59ffdf6325cdf763dadf16 Mon Sep 17 00:00:00 2001 From: Robert Sirchia Date: Wed, 23 Oct 2024 15:17:44 -0400 Subject: [PATCH] removing duplicate empty test Signed-off-by: Robert Sirchia --- pkg/kube/ready_test.go | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/pkg/kube/ready_test.go b/pkg/kube/ready_test.go index 2fb391cc0..14bf8588b 100644 --- a/pkg/kube/ready_test.go +++ b/pkg/kube/ready_test.go @@ -1638,36 +1638,3 @@ func intToInt32(i int) *int32 { i32 := int32(i) return &i32 } - -func TestReadyChecker_isPodReady(t *testing.T) { - type fields struct { - client kubernetes.Interface - log func(string, ...interface{}) - checkJobs bool - pausedAsReady bool - } - type args struct { - pod *corev1.Pod - } - tests := []struct { - name string - fields fields - args args - want bool - }{ - // TODO: Add test cases. - } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - c := &ReadyChecker{ - client: tt.fields.client, - log: tt.fields.log, - checkJobs: tt.fields.checkJobs, - pausedAsReady: tt.fields.pausedAsReady, - } - if got := c.isPodReady(tt.args.pod); got != tt.want { - t.Errorf("isPodReady() = %v, want %v", got, tt.want) - } - }) - } -}