From fa8da84835977892881ec7e0430d010251e91209 Mon Sep 17 00:00:00 2001 From: Kensei Nakada Date: Thu, 20 Jun 2024 23:36:25 +0000 Subject: [PATCH] remove fixme comment --- pkg/scheduler/internal/queue/scheduling_queue_test.go | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkg/scheduler/internal/queue/scheduling_queue_test.go b/pkg/scheduler/internal/queue/scheduling_queue_test.go index c12fd1f6726..b74d197d6b5 100644 --- a/pkg/scheduler/internal/queue/scheduling_queue_test.go +++ b/pkg/scheduler/internal/queue/scheduling_queue_test.go @@ -1508,11 +1508,9 @@ func TestPriorityQueue_MoveAllToActiveOrBackoffQueueWithQueueingHint(t *testing. expectedQ: unschedulablePods, }, { - name: "QueueHintFunction is called when Pod is gated by a plugin other than SchedulingGates", - podInfo: setQueuedPodInfoGated(&framework.QueuedPodInfo{PodInfo: mustNewPodInfo(p), UnschedulablePlugins: sets.New("foo")}), - hint: queueHintReturnQueue, - // FIXME: This should be backoffQ. - // https://github.com/kubernetes/kubernetes/issues/125538 + name: "QueueHintFunction is called when Pod is gated by a plugin other than SchedulingGates", + podInfo: setQueuedPodInfoGated(&framework.QueuedPodInfo{PodInfo: mustNewPodInfo(p), UnschedulablePlugins: sets.New("foo")}), + hint: queueHintReturnQueue, expectedQ: activeQ, }, }