Skip to content

Commit

Permalink
Try with uppercase "Bar"
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasbeyer committed Jun 8, 2021
1 parent de7cf3a commit b38fa1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/de.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ mod tests {
#[test]
fn test_unreachable_reachable_not_panicing_1() {
let working_config = r#"
e.bar.filename = "blah"
e.Bar.filename = "blah"
"#;

let mut c = Config::default();
Expand All @@ -496,7 +496,7 @@ mod tests {
#[test]
fn test_unreachable_reachable_not_panicing_2() {
let working_config = r#"
e = "foo"
e = "Foo"
"#;

let mut c = Config::default();
Expand All @@ -509,7 +509,7 @@ mod tests {
#[should_panic]
fn test_unreachable_reachable_panicing() {
let panicing_config = r#"
e = "bar"
e = "Bar"
"#;

let mut c = Config::default();
Expand Down

0 comments on commit b38fa1b

Please sign in to comment.