chore: remove duplicate word in comments

Signed-off-by: Abirdcfly <fp544037857@gmail.com>
This commit is contained in:
Abirdcfly 2022-08-30 20:00:26 +08:00
parent cdd2b737f0
commit 858afba44e
No known key found for this signature in database
GPG Key ID: A4EA876831B0458B

View File

@ -3250,7 +3250,7 @@ func TestAddNodeCheckQuorum(t *testing.T) {
}
// TestRemoveNode tests that removeNode could update nodes and
// and removed list correctly.
// removed list correctly.
func TestRemoveNode(t *testing.T) {
r := newTestRaft(1, 10, 1, newTestMemoryStorage(withPeers(1, 2)))
r.applyConfChange(pb.ConfChange{NodeID: 2, Type: pb.ConfChangeRemoveNode}.AsV2())
@ -3269,7 +3269,7 @@ func TestRemoveNode(t *testing.T) {
}
// TestRemoveLearner tests that removeNode could update nodes and
// and removed list correctly.
// removed list correctly.
func TestRemoveLearner(t *testing.T) {
r := newTestLearnerRaft(1, 10, 1, newTestMemoryStorage(withPeers(1), withLearners(2)))
r.applyConfChange(pb.ConfChange{NodeID: 2, Type: pb.ConfChangeRemoveNode}.AsV2())