Browse Source

Merge pull request #8485 from irfansharif/TestRecvMsgPreVote

raft: (re-)introduce TestRecvMsgPreVote
Xiang Li 8 years ago
parent
commit
40e969b02a
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)
 	testRecvMsgVote(t, pb.MsgVote)
 }
 }
 
 
+func TestRecvMsgPreVote(t *testing.T) {
+	testRecvMsgVote(t, pb.MsgPreVote)
+}
+
 func testRecvMsgVote(t *testing.T, msgType pb.MessageType) {
 func testRecvMsgVote(t *testing.T, msgType pb.MessageType) {
 	tests := []struct {
 	tests := []struct {
 		state          StateType
 		state          StateType