Fix the detection of unsorted order when not using the --check flag
This commit is contained in:
parent
78c8e56e66
commit
6938cb9d15
@ -414,14 +414,13 @@ impl<'a> Module<'a> {
|
|||||||
}
|
}
|
||||||
for window in self.items.windows(2) {
|
for window in self.items.windows(2) {
|
||||||
if window[0].1 > window[1].1 {
|
if window[0].1 > window[1].1 {
|
||||||
// eprintln!("{:?} {:?}", window[0].1, window[1].1);
|
|
||||||
if print_diff {
|
if print_diff {
|
||||||
eprintln!(
|
eprintln!(
|
||||||
"Expected \n\"\"\"\n{}\n\"\"\"\n before \n\"\"\"\n{}\n\"\"\"",
|
"Expected \n\"\"\"\n{}\n\"\"\"\n before \n\"\"\"\n{}\n\"\"\"",
|
||||||
window[1].1, window[0].1
|
window[1].1, window[0].1
|
||||||
);
|
);
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
true
|
true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user