We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88c7d8d commit 30f37bcCopy full SHA for 30f37bc
1 file changed
tests/one_file_system.rs
@@ -61,19 +61,19 @@ fn same_device_on_sample_workspace() {
61
})
62
};
63
64
- let cross = DeviceBoundary::Cross
+ let crossing = DeviceBoundary::Cross
65
.pipe(build_tree)
66
.into_par_sorted(|left, right| left.name().cmp(right.name()))
67
.into_reflection()
68
.pipe(sanitize_tree_reflection);
69
- let stay = DeviceBoundary::Stay
+ let staying = DeviceBoundary::Stay
70
71
72
73
74
75
assert_eq!(
76
- cross, stay,
+ crossing, staying,
77
"DeviceBoundary should not change the result when all files are on the same device",
78
);
79
}
0 commit comments