Browse Source

raft: (re-)introduce TestRecvMsgPreVote

TestRecvMsgPreVote was intended to be introduced in
github.com/coreos/etcd/pull/6624 but was uncapitalized (search for
testRecvMsgPreVote instead) and then subsequently removed due to it
being unused.
irfan sharif 8 years ago
parent
commit
248384a468
1 changed files with 4 additions and 0 deletions
  1. 4 0
      raft/raft_test.go

+ 4 - 0
raft/raft_test.go

@@ -1361,6 +1361,10 @@ func TestRecvMsgVote(t *testing.T) {
 	testRecvMsgVote(t, pb.MsgVote)
 }
 
+func TestRecvMsgPreVote(t *testing.T) {
+	testRecvMsgVote(t, pb.MsgPreVote)
+}
+
 func testRecvMsgVote(t *testing.T, msgType pb.MessageType) {
 	tests := []struct {
 		state          StateType