Merge pull request #10212 from gyuho/raft-typo

raft: fix godoc in tests
This commit is contained in:
Gyuho Lee 2018-10-25 09:51:35 -07:00 committed by GitHub
commit 38da00be33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1216,8 +1216,7 @@ func TestProposal(t *testing.T) {
for j, tt := range tests {
send := func(m pb.Message) {
defer func() {
// only recover is we expect it to panic so
// panics we don't expect go up.
// only recover if we expect it to panic (success==false)
if !tt.success {
e := recover()
if e != nil {
@ -1230,7 +1229,7 @@ func TestProposal(t *testing.T) {
data := []byte("somedata")
// promote 0 the leader
// promote 1 to become leader
send(pb.Message{From: 1, To: 1, Type: pb.MsgHup})
send(pb.Message{From: 1, To: 1, Type: pb.MsgProp, Entries: []pb.Entry{{Data: data}}})