From d901769bc3a4d2eefc12ba128c168f4bfcacd0dc Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Thu, 18 Jul 2024 14:32:18 -0700 Subject: [PATCH] [red-knot] fix naming of benchmarks --- crates/ruff_benchmark/benches/red_knot.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ruff_benchmark/benches/red_knot.rs b/crates/ruff_benchmark/benches/red_knot.rs index 9933a17ceffbf..98055b82e606a 100644 --- a/crates/ruff_benchmark/benches/red_knot.rs +++ b/crates/ruff_benchmark/benches/red_knot.rs @@ -178,7 +178,7 @@ fn benchmark_cold(criterion: &mut Criterion) { group.finish(); } -criterion_group!(cold, benchmark_without_parse); -criterion_group!(without_parse, benchmark_cold); +criterion_group!(cold, benchmark_cold); +criterion_group!(without_parse, benchmark_without_parse); criterion_group!(incremental, benchmark_incremental); criterion_main!(without_parse, cold, incremental);