Increase timeout for TestEtcdSourceExistingBoundPods test

This commit is contained in:
saadali 2015-01-14 17:06:04 -08:00
parent 46827720b3
commit b57cc6a11c

View File

@ -71,8 +71,8 @@ func TestEtcdSourceExistingBoundPods(t *testing.T) {
update.Pods[1].ObjectMeta.Name != "bar" { update.Pods[1].ObjectMeta.Name != "bar" {
t.Errorf("Unexpected update response: %#v", update) t.Errorf("Unexpected update response: %#v", update)
} }
case <-time.After(2 * time.Millisecond): case <-time.After(200 * time.Millisecond):
t.Errorf("Expected update, timeout insteam") t.Errorf("Expected update, timeout instead")
} }
} }