Skip to content

Commit

Permalink
Fix clippy nit
Browse files Browse the repository at this point in the history
  • Loading branch information
mwillsey committed Aug 30, 2024
1 parent d014800 commit 1b2d004
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/explain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2059,10 +2059,7 @@ mod tests {
init_logger();

let rws: Vec<Rewrite<SymbolLang, ()>> =
[rewrite!("makeb"; "a" => "b"), rewrite!("makec"; "b" => "c")]
.iter()
.cloned()
.collect();
[rewrite!("makeb"; "a" => "b"), rewrite!("makec"; "b" => "c")].to_vec();
let mut egraph = Runner::default()
.with_explanations_enabled()
.without_explanation_length_optimization()
Expand Down

0 comments on commit 1b2d004

Please sign in to comment.