Skip to content

Commit eda2913

Browse files
committed
Try with uppercase "Bar"
1 parent 508e4e6 commit eda2913

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/de.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ mod tests {
481481
#[test]
482482
fn test_unreachable_reachable_not_panicing_1() {
483483
let working_config = r#"
484-
e.bar.filename = "blah"
484+
e.Bar.filename = "blah"
485485
"#;
486486

487487
let mut c = Config::default();
@@ -492,7 +492,7 @@ mod tests {
492492
#[test]
493493
fn test_unreachable_reachable_not_panicing_2() {
494494
let working_config = r#"
495-
e = "foo"
495+
e = "Foo"
496496
"#;
497497

498498
let mut c = Config::default();
@@ -505,7 +505,7 @@ mod tests {
505505
#[should_panic]
506506
fn test_unreachable_reachable_panicing() {
507507
let panicing_config = r#"
508-
e = "bar"
508+
e = "Bar"
509509
"#;
510510

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

0 commit comments

Comments
 (0)