From 8c1b80c6d59da06a3897db8221cd5767fa90f4ea Mon Sep 17 00:00:00 2001 From: Wojciech Tyczynski Date: Mon, 5 Sep 2016 13:53:43 +0200 Subject: [PATCH] Fix density test --- test/e2e/framework/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index 8f8d925f4b5..403247921bb 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -3367,7 +3367,7 @@ func DeleteRCAndWaitForGC(c *client.Client, ns, name string) error { if rc.Spec.Replicas < 5000 { timeout = 10 * time.Minute } else { - timeout = time.Duration(rc.Spec.Replicas / gcThroughput) + timeout = time.Duration(rc.Spec.Replicas / gcThroughput) * time.Second } err = waitForPodsInactive(ps, interval, timeout) if err != nil {