Skip to content

Commit 8ed792c

Browse files
committed
move
1 parent f226275 commit 8ed792c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_edge_difference_iteration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ fn test_collect_edge_diff_iterators() {
7373
}
7474
}
7575

76-
let removals = diffs.iter().flat_map(|d| d.removals()).collect::<Vec<_>>();
7776
let insertions = diffs
7877
.iter()
7978
.flat_map(|d| d.insertions())
@@ -89,6 +88,7 @@ fn test_collect_edge_diff_iterators() {
8988
assert_eq!(i.right(), ts.tables().edges().right_column()[j.as_usize()]);
9089
}
9190

91+
let removals = diffs.iter().flat_map(|d| d.removals()).collect::<Vec<_>>();
9292
let removal_order = ts.edge_removal_order();
9393
// Removals have some nuance:
9494
// The "standard" loop ends when all IMSERTIONS havee

0 commit comments

Comments
 (0)