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.
release-3.3
irfan sharif 2017-09-01 10:45:47 -04:00
parent b61c7489e0
commit 248384a468
1 changed files with 4 additions and 0 deletions

View File

@ -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