integration: bump timeout for good path

When waiting for a watch result, we expect the good path to complete
quickly here so we don't need to time out so aggressively. (Failure
noted in #1600)
This commit is contained in:
Jonathan Boulle 2014-11-04 12:55:40 -08:00
parent 915f8f4822
commit 9f29545f66

View File

@ -847,7 +847,7 @@ func TestV2WatchWithIndex(t *testing.T) {
select {
case <-c:
case <-time.After(time.Millisecond):
case <-time.After(time.Second):
t.Fatal("cannot get watch result")
}