Skip to content

Commit

Permalink
remove the hard to read start of names
Browse files Browse the repository at this point in the history
  • Loading branch information
Eh2406 committed Nov 7, 2018
1 parent 221908d commit 8cfa1dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testsuite/support/resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ pub fn registry_strategy(
max_versions: usize,
shrinkage: usize,
) -> impl Strategy<Value = PrettyPrintRegistry> {
let name = string_regex("[A-Za-z_-][A-Za-z0-9_-]*(-sys)?").unwrap();
let name = string_regex("[A-Za-z][A-Za-z0-9_-]*(-sys)?").unwrap();

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

0 comments on commit 8cfa1dd

Please sign in to comment.