Bug fix: bench_n expects empty return

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

View file

@ -61,7 +61,7 @@ fn parse_archive_with_comment(bench: &mut Bencher) {
bench.bench_n(1, |_| {
let archive = ZipArchive::new(Cursor::new(bytes.as_slice())).unwrap();
archive.comment().len()
archive.comment().len();
});
bench.bytes = bytes.len() as u64;
}