raft: fix typo in raft_test.go

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyuho Lee 2018-02-26 10:03:25 -08:00
parent d4aeb3b8cf
commit d808b4686c

View File

@ -722,7 +722,7 @@ func TestLearnerLogReplication(t *testing.T) {
match := n1.getProgress(2).Match
if match != n2.raftLog.committed {
t.Errorf("progresss 2 of leader 1 wants match %d, but got %d", n2.raftLog.committed, match)
t.Errorf("progress 2 of leader 1 wants match %d, but got %d", n2.raftLog.committed, match)
}
}