Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: Jonas Platte <[email protected]>
  • Loading branch information
Gnnng and jplatte authored Aug 20, 2020
1 parent 4ecc111 commit 145fcbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filter/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ mod tests {
#[test]
fn parse_spec_name_canonicalization() {
// accept binary names in both styles (`snake_case` and `kebab-case`)
let (dirs, _) = parse_spec("snake_case_crate=info,kebaba-case-crate=debug");
let (dirs, _) = parse_spec("snake_case_crate=info,kebab-case-crate=debug");
assert_eq!(dirs.len(), 2);
assert_eq!(dirs[0].name, Some("snake_case_crate".to_string()));
assert_eq!(dirs[0].level, LevelFilter::Info);
Expand Down

0 comments on commit 145fcbb

Please sign in to comment.