chore(bench): codspeed name workaround (#13519)

This commit is contained in:
DaniPopes
2024-12-23 12:45:41 +02:00
committed by GitHub
parent d0e5e04e6b
commit 03a3391318

View File

@ -59,12 +59,12 @@ pub fn prefix_set_lookups(c: &mut Criterion) {
use implementations::*;
prefix_set_bench::<BTreeAnyPrefixSet>(
&mut group,
"`BTreeSet` with `Iterator::any` lookup",
"`BTreeSet` with `Iterator:any` lookup",
test_data.clone(),
);
prefix_set_bench::<BTreeRangeLastCheckedPrefixSet>(
&mut group,
"`BTreeSet` with `BTreeSet::range` lookup",
"`BTreeSet` with `BTreeSet:range` lookup",
test_data.clone(),
);
prefix_set_bench::<VecCursorPrefixSet>(