From e2b7424ee064a0b778723320de6da9d45931cff4 Mon Sep 17 00:00:00 2001 From: "Tim St. Clair" Date: Thu, 29 Sep 2016 11:46:23 -0700 Subject: [PATCH] Fix summary_test.go ARM build --- test/e2e_node/summary_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/e2e_node/summary_test.go b/test/e2e_node/summary_test.go index 5b375e58245..799d507bcb2 100644 --- a/test/e2e_node/summary_test.go +++ b/test/e2e_node/summary_test.go @@ -46,10 +46,10 @@ var _ = framework.KubeDescribe("Summary API [Flaky]", func() { // Setup expectations. const ( - kb = 1000 - mb = 1000 * kb - gb = 1000 * mb - tb = 1000 * gb + kb int64 = 1000 + mb int64 = 1000 * kb + gb int64 = 1000 * mb + tb int64 = 1000 * gb maxStartAge = time.Hour * 24 * 365 // 1 year maxStatsAge = time.Minute