Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Prev Previous commit
Next Next commit
Fix to make clippy happy
  • Loading branch information
davxy committed Mar 14, 2022
commit 301f55a0421d3e13aba4725030e4964dadea79f7
3 changes: 1 addition & 2 deletions utils/fork-tree/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1542,8 +1542,7 @@ mod test {
// Remove and continue filtering.
"H" => (true, None),
// Should never happen because of the stop and pruning conditions.
"D" | "E" | "I" | "L" | "M" | "O" | "J" | "K" | _ =>
panic!("Unexpected filtering for: {}", *h),
_ => panic!("Unexpected filtering for node: {}", *h),
}
};

Expand Down