Fix a bug in benchmark: closure needs a parameter

Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
Chris Hennick 2024-05-24 13:01:51 -07:00 committed by GitHub
parent 2a39a8e0a7
commit a4915fdcd7
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -59,7 +59,7 @@ fn generate_zip32_archive_with_random_comment(comment_length: usize) -> ZipResul
fn parse_archive_with_comment(bench: &mut Bencher) {
let bytes = generate_zip32_archive_with_random_comment(COMMENT_SIZE).unwrap();
bench.bench_n(1, || {
bench.bench_n(1, |_| {
let archive = ZipArchive::new(Cursor::new(bytes.as_slice())).unwrap();
archive.comment().len()
});