From 82cbbb4845213c33a5b2e31986ffa025cd543ff0 Mon Sep 17 00:00:00 2001 From: Binbin Zhao Date: Wed, 21 Jun 2017 01:15:55 -0700 Subject: [PATCH] Fix a typo Fix a typo --- test/e2e/scheduling/predicates.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/scheduling/predicates.go b/test/e2e/scheduling/predicates.go index 548e316a59b..2d62fc02b02 100644 --- a/test/e2e/scheduling/predicates.go +++ b/test/e2e/scheduling/predicates.go @@ -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))