Merge pull request #29111 from gmarek/maxpods

Fix the fix - no type-checking...
This commit is contained in:
Marek Grabowski 2016-07-18 16:30:18 +02:00 committed by GitHub
commit 77037722a3

View File

@ -87,7 +87,7 @@ func verifyResult(c *client.Client, podName string, expectedScheduled int, expec
}
Expect(len(notScheduledPods)).To(Equal(expectedNotScheduled), printOnce(fmt.Sprintf("Not scheduled Pods: %#v", notScheduledPods)))
Expect(scheduledPods).To(Equal(expectedScheduled), printOnce(fmt.Sprintf("Scheduled Pods: %#v", scheduledPods)))
Expect(len(scheduledPods)).To(Equal(expectedScheduled), printOnce(fmt.Sprintf("Scheduled Pods: %#v", scheduledPods)))
}
func cleanupPods(c *client.Client, ns string) {