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 8b06f9e commit 88c7d8dCopy full SHA for 88c7d8d
1 file changed
tests/one_file_system.rs
@@ -64,15 +64,16 @@ fn same_device_on_sample_workspace() {
64
let cross = DeviceBoundary::Cross
65
.pipe(build_tree)
66
.into_par_sorted(|left, right| left.name().cmp(right.name()))
67
- .into_reflection();
+ .into_reflection()
68
+ .pipe(sanitize_tree_reflection);
69
let stay = DeviceBoundary::Stay
70
71
72
73
74
75
assert_eq!(
- sanitize_tree_reflection(cross),
- sanitize_tree_reflection(stay),
76
+ cross, stay,
77
"DeviceBoundary should not change the result when all files are on the same device",
78
);
79
}
0 commit comments