From b57cc6a11c6cf31a79dc12807001e5a37b7576a9 Mon Sep 17 00:00:00 2001 From: saadali Date: Wed, 14 Jan 2015 17:06:04 -0800 Subject: [PATCH] Increase timeout for TestEtcdSourceExistingBoundPods test --- pkg/kubelet/config/etcd_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kubelet/config/etcd_test.go b/pkg/kubelet/config/etcd_test.go index c57e523146f..8debafe23f0 100644 --- a/pkg/kubelet/config/etcd_test.go +++ b/pkg/kubelet/config/etcd_test.go @@ -71,8 +71,8 @@ func TestEtcdSourceExistingBoundPods(t *testing.T) { update.Pods[1].ObjectMeta.Name != "bar" { t.Errorf("Unexpected update response: %#v", update) } - case <-time.After(2 * time.Millisecond): - t.Errorf("Expected update, timeout insteam") + case <-time.After(200 * time.Millisecond): + t.Errorf("Expected update, timeout instead") } }