We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a04db48 commit 61962bdCopy full SHA for 61962bd
crates/cargo-codspeed/src/run.rs
@@ -97,7 +97,7 @@ pub fn run_benches(metadata: &Metadata, filters: Filters) -> Result<()> {
97
if let Some(allowed_bench_names) = filters.bench {
98
// Make sure all benchmarks are found
99
let mut not_found = vec![];
100
- for whitelisted_bench_name in whitelisted_bench_names.iter() {
+ for allowed_bench_name in allowed_bench_names.iter() {
101
let bench = benches
102
.iter()
103
.find(|b| b.bench_name.contains(whitelisted_bench_name));
0 commit comments