Skip to content

Commit 947bde5

Browse files
authored
refactor: Remove unnecessary pipe
1 parent 2cfbbea commit 947bde5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/usual_cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ fn multiple_names() {
627627
children.collect(),
628628
)
629629
})
630-
.pipe(|tree| tree.into_par_sorted(|left, right| left.data().cmp(&right.data()).reverse()));
630+
.into_par_sorted(|left, right| left.data().cmp(&right.data()).reverse());
631631
data_tree.par_cull_insignificant_data(0.01);
632632
let visualizer = Visualizer::<OsStringDisplay, _> {
633633
data_tree: &data_tree,

0 commit comments

Comments
 (0)