File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -379,15 +379,15 @@ func TestPods(t *testing.T) {
379379 existingPods : []* corev1.Pod {pod1 , pod2 },
380380 wantPods : []* corev1.Pod {pod1 },
381381 op : func (ctx context.Context , ds Datastore ) {
382- ds .PodRemove (pod2 .Name )
382+ ds .PodDelete (pod2 .Name )
383383 },
384384 },
385385 {
386386 name : "Delete the pod that doesn't exist" ,
387387 existingPods : []* corev1.Pod {pod1 },
388388 wantPods : []* corev1.Pod {pod1 },
389389 op : func (ctx context.Context , ds Datastore ) {
390- ds .PodRemove (pod2 .Name )
390+ ds .PodDelete (pod2 .Name )
391391 },
392392 },
393393 }
@@ -569,7 +569,7 @@ func TestPodInfo(t *testing.T) {
569569 },
570570 },
571571 op : func (ctx context.Context , ds Datastore ) {
572- ds .PodRemove (pod2 .Name )
572+ ds .PodDelete (pod2 .Name )
573573 },
574574 pool : inferencePoolMultiTarget ,
575575 },
You can’t perform that action at this time.
0 commit comments