From d808b4686c76ba0c7fe0a4bf454698937cd501aa Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Mon, 26 Feb 2018 10:03:25 -0800 Subject: [PATCH] raft: fix typo in raft_test.go Signed-off-by: Gyuho Lee --- raft/raft_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raft/raft_test.go b/raft/raft_test.go index c93935fb7..5ae49bc56 100644 --- a/raft/raft_test.go +++ b/raft/raft_test.go @@ -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) } }