Skip to content

Commit 8cfa1dd

Browse files
committed
remove the hard to read start of names
1 parent 221908d commit 8cfa1dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/testsuite/support/resolver.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ pub fn registry_strategy(
355355
max_versions: usize,
356356
shrinkage: usize,
357357
) -> impl Strategy<Value = PrettyPrintRegistry> {
358-
let name = string_regex("[A-Za-z_-][A-Za-z0-9_-]*(-sys)?").unwrap();
358+
let name = string_regex("[A-Za-z][A-Za-z0-9_-]*(-sys)?").unwrap();
359359

360360
let raw_version = [..max_versions; 3];
361361
let version_from_raw = |v: &[usize; 3]| format!("{}.{}.{}", v[0], v[1], v[2]);

0 commit comments

Comments
 (0)