From bfb6b05311f5a4a9aa427e3242f6d139a0348ce9 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Tue, 24 Mar 2015 17:25:24 -0400 Subject: [PATCH] Wait longer in TestWatchControllers 10ms is too slow for travis --- pkg/controller/replication_controller_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/replication_controller_test.go b/pkg/controller/replication_controller_test.go index 481239d8c19..a4da5013f5d 100644 --- a/pkg/controller/replication_controller_test.go +++ b/pkg/controller/replication_controller_test.go @@ -409,7 +409,7 @@ func TestWatchControllers(t *testing.T) { select { case <-received: - case <-time.After(10 * time.Millisecond): + case <-time.After(100 * time.Millisecond): t.Errorf("Expected 1 call but got 0") } }