Skip to content

Commit

Permalink
Argument missing in bench
Browse files Browse the repository at this point in the history
  • Loading branch information
fulmicoton committed Aug 25, 2022
1 parent 3673a5d commit f908549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastfield_codecs/benches/bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ mod tests {
data: &[u64],
) {
let mut bytes = vec![];
S::serialize(&mut bytes, &data, stats_from_vec(data)).unwrap();
S::serialize(&mut bytes, &data).unwrap();
let reader = R::open_from_bytes(OwnedBytes::new(bytes)).unwrap();
b.iter(|| {
for pos in value_iter() {
Expand Down

0 comments on commit f908549

Please sign in to comment.