diff --git a/raft/node_test.go b/raft/node_test.go index f637971af..c49ce6723 100644 --- a/raft/node_test.go +++ b/raft/node_test.go @@ -463,7 +463,7 @@ func TestNodeAdvance(t *testing.T) { n.Advance() select { case <-n.Ready(): - case <-time.After(time.Millisecond): + case <-time.After(100 * time.Millisecond): t.Errorf("expect Ready after Advance, but there is no Ready available") } }