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:
parent
2a39a8e0a7
commit
a4915fdcd7
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue