Reenable undo/redo in randomized concurrent edit test

Currently this fails
This commit is contained in:
Max Brunsfeld 2021-06-03 17:41:51 -07:00
parent de9626ac12
commit 23c4621b36

View file

@ -3108,9 +3108,9 @@ mod tests {
mutation_count -= 1;
}
51..=70 if mutation_count != 0 => {
// let ops = buffer.randomly_undo_redo(&mut rng);
// network.broadcast(replica_id, ops, &mut rng);
// mutation_count -= 1;
let ops = buffer.randomly_undo_redo(&mut rng);
network.broadcast(replica_id, ops, &mut rng);
mutation_count -= 1;
}
71..=100 if network.has_unreceived(replica_id) => {
let ops = network.receive(replica_id, &mut rng);