integration: bump up 'TestV3LeaseRequireLeader' timeout to 5-sec

Signed-off-by: Gyu-Ho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyu-Ho Lee 2017-05-18 16:41:05 -07:00
parent 0afc51c762
commit 29bbcdd110

View File

@ -528,8 +528,8 @@ func TestV3LeaseRequireLeader(t *testing.T) {
}
}()
select {
case <-time.After(time.Duration(5*electionTicks) * tickDuration):
t.Fatalf("did not receive leader loss error")
case <-time.After(5 * time.Second):
t.Fatal("did not receive leader loss error (in 5-sec)")
case <-donec:
}
}