Skip to content

Commit 30f37bc

Browse files
committed
refactor: rename some variables
1 parent 88c7d8d commit 30f37bc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/one_file_system.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@ fn same_device_on_sample_workspace() {
6161
})
6262
};
6363

64-
let cross = DeviceBoundary::Cross
64+
let crossing = DeviceBoundary::Cross
6565
.pipe(build_tree)
6666
.into_par_sorted(|left, right| left.name().cmp(right.name()))
6767
.into_reflection()
6868
.pipe(sanitize_tree_reflection);
69-
let stay = DeviceBoundary::Stay
69+
let staying = DeviceBoundary::Stay
7070
.pipe(build_tree)
7171
.into_par_sorted(|left, right| left.name().cmp(right.name()))
7272
.into_reflection()
7373
.pipe(sanitize_tree_reflection);
7474

7575
assert_eq!(
76-
cross, stay,
76+
crossing, staying,
7777
"DeviceBoundary should not change the result when all files are on the same device",
7878
);
7979
}

0 commit comments

Comments
 (0)