Explorar el Código

raft: fix typo in raft_test.go

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
Gyuho Lee hace 8 años
padre
commit
d808b4686c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      raft/raft_test.go

+ 1 - 1
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)
 	}
 }