aboutsummaryrefslogtreecommitdiffstats
path: root/benches/concat.rs
diff options
context:
space:
mode:
Diffstat (limited to 'benches/concat.rs')
-rw-r--r--benches/concat.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/benches/concat.rs b/benches/concat.rs
index a07f908..0b31ebb 100644
--- a/benches/concat.rs
+++ b/benches/concat.rs
@@ -11,7 +11,7 @@ fn concat(buf: &[u8]) -> Rope {
}
fn criterion_benchmark(c: &mut Criterion) {
- let bytes = vec![0; 10000];
+ let bytes = vec![0; 1000];
c.bench_function("concat asdfasdf", |b| b.iter(|| concat(black_box(&bytes))));
}