Skip to content

Commit b38fa1b

Browse files
committed
Try with uppercase "Bar"
1 parent de7cf3a commit b38fa1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/de.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ mod tests {
485485
#[test]
486486
fn test_unreachable_reachable_not_panicing_1() {
487487
let working_config = r#"
488-
e.bar.filename = "blah"
488+
e.Bar.filename = "blah"
489489
"#;
490490

491491
let mut c = Config::default();
@@ -496,7 +496,7 @@ mod tests {
496496
#[test]
497497
fn test_unreachable_reachable_not_panicing_2() {
498498
let working_config = r#"
499-
e = "foo"
499+
e = "Foo"
500500
"#;
501501

502502
let mut c = Config::default();
@@ -509,7 +509,7 @@ mod tests {
509509
#[should_panic]
510510
fn test_unreachable_reachable_panicing() {
511511
let panicing_config = r#"
512-
e = "bar"
512+
e = "Bar"
513513
"#;
514514

515515
let mut c = Config::default();

0 commit comments

Comments
 (0)