Sort the files when running benches

This commit is contained in:
Ivan Smirnov 2022-01-01 21:55:51 +03:00
parent 2a764a1132
commit 343f11bccf

View file

@ -68,6 +68,7 @@ fn find_pngs(paths: &[PathBuf]) -> Result<Vec<PathBuf>> {
bail!("path doesn't exist: {}", path.to_string_lossy());
}
}
out.sort_unstable();
Ok(out)
}