Merge pull request #14405 from Abirdcfly/main

chore: remove duplicate word in comments
This commit is contained in:
Benjamin Wang 2022-08-31 16:19:30 +08:00 committed by GitHub
commit a285b06d63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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())