Fix a typo

Fix a typo
This commit is contained in:
Binbin Zhao 2017-06-21 01:15:55 -07:00
parent 9cbe992fc5
commit 82cbbb4845

View File

@ -183,7 +183,7 @@ var _ = framework.KubeDescribe("SchedulerPredicates [Serial]", func() {
framework.Logf("Using pod capacity: %vm", milliCpuPerPod)
for name, leftAllocatable := range nodeToAllocatableMap {
framework.Logf("Node: %v has cpu allocatable: %vm", name, leftAllocatable)
podsNeededForSaturation += (int)(leftleftAllocatable / milliCpuPerPod)
podsNeededForSaturation += (int)(leftAllocatable / milliCpuPerPod)
}
By(fmt.Sprintf("Starting additional %v Pods to fully saturate the cluster CPU and trying to start another one", podsNeededForSaturation))