remove unused variables in test/integration/scheduler/util.go

This commit is contained in:
Antonio Ojea 2022-05-06 12:49:59 +02:00
parent ef410d18e1
commit 46fc39f440

View File

@ -21,31 +21,17 @@ import (
) )
var ( var (
createPausePod = testutils.CreatePausePod createNode = testutils.CreateNode
createPausePodWithResource = testutils.CreatePausePodWithResource createPausePod = testutils.CreatePausePod
createNode = testutils.CreateNode createPausePodWithResource = testutils.CreatePausePodWithResource
initPausePod = testutils.InitPausePod deletePod = testutils.DeletePod
runPausePod = testutils.RunPausePod initPausePod = testutils.InitPausePod
waitForPodUnschedulable = testutils.WaitForPodUnschedulable initTest = testutils.InitTestSchedulerWithNS
waitForPodToScheduleWithTimeout = testutils.WaitForPodToScheduleWithTimeout nextPod = testutils.NextPod
waitCachedPodsStable = testutils.WaitCachedPodsStable nextPodOrDie = testutils.NextPodOrDie
waitForPDBsStable = testutils.WaitForPDBsStable runPausePod = testutils.RunPausePod
waitForReflection = testutils.WaitForReflection updateNode = testutils.UpdateNode
waitForNodesInCache = testutils.WaitForNodesInCache waitForNodesInCache = testutils.WaitForNodesInCache
createAndWaitForNodesInCache = testutils.CreateAndWaitForNodesInCache waitForPodUnschedulable = testutils.WaitForPodUnschedulable
getPod = testutils.GetPod waitForReflection = testutils.WaitForReflection
deletePod = testutils.DeletePod
updateNode = testutils.UpdateNode
podSchedulingError = testutils.PodSchedulingError
podScheduledIn = testutils.PodScheduledIn
podUnschedulable = testutils.PodUnschedulable
podIsGettingEvicted = testutils.PodIsGettingEvicted
initTest = testutils.InitTestSchedulerWithNS
initTestDisablePreemption = testutils.InitTestDisablePreemption
initDisruptionController = testutils.InitDisruptionController
createNamespacesWithLabels = testutils.CreateNamespacesWithLabels
runPodWithContainers = testutils.RunPodWithContainers
initPodWithContainers = testutils.InitPodWithContainers
nextPodOrDie = testutils.NextPodOrDie
nextPod = testutils.NextPod
) )