From 9f29545f661220281b5cc5b2f9ae9a32e4ff3de2 Mon Sep 17 00:00:00 2001 From: Jonathan Boulle Date: Tue, 4 Nov 2014 12:55:40 -0800 Subject: [PATCH] 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) --- integration/v2_http_kv_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/v2_http_kv_test.go b/integration/v2_http_kv_test.go index 63a929374..09d4be5cb 100644 --- a/integration/v2_http_kv_test.go +++ b/integration/v2_http_kv_test.go @@ -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") }