From a079fd2757ff4f9c8a12fef26b92e9f8c95e9c9c Mon Sep 17 00:00:00 2001 From: ravisantoshgudimetla Date: Wed, 22 Aug 2018 11:27:40 -0400 Subject: [PATCH] Remove the unnecessary print statements --- pkg/descheduler/strategies/lownodeutilization_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/descheduler/strategies/lownodeutilization_test.go b/pkg/descheduler/strategies/lownodeutilization_test.go index c33a0653e..c4cb1cb62 100644 --- a/pkg/descheduler/strategies/lownodeutilization_test.go +++ b/pkg/descheduler/strategies/lownodeutilization_test.go @@ -267,9 +267,6 @@ func TestSortPodsByPriority(t *testing.T) { podList := []*v1.Pod{p4, p3, p2, p1, p6, p5} sortPodsBasedOnPriority(podList) - for _, pod := range podList { - fmt.Println(pod) - } if !reflect.DeepEqual(podList[len(podList)-1], p4) { t.Errorf("Expected last pod in sorted list to be %v which of highest priority and guaranteed but got %v", p4, podList[len(podList)-1]) }