Skip to content

Commit fc83598

Browse files
committed
chore: clippy
1 parent 56301b1 commit fc83598

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

benches/bootstrap/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ fn dart_sass() {
7070
fn benchmark(c: &mut Criterion) {
7171
let mut group = c.benchmark_group("bootstrap");
7272
group.sample_size(10);
73-
group.bench_function("Host Rust", |b| b.iter(|| host_rust()));
74-
group.bench_function("Host Node", |b| b.iter(|| host_node()));
75-
group.bench_function("Dart Sass", |b| b.iter(|| dart_sass()));
73+
group.bench_function("Host Rust", |b| b.iter(host_rust));
74+
group.bench_function("Host Node", |b| b.iter(host_node));
75+
group.bench_function("Dart Sass", |b| b.iter(dart_sass));
7676
}
7777

7878
criterion_group!(benches, benchmark);

0 commit comments

Comments
 (0)