summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-06-08 09:10:52 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-07-10 15:36:10 +0200
commiteda291320bd73b45aa31c84e7756ad51c93713c9 (patch)
treecd539301881d3a108ea328bed675dbe9dc0515f1
parent508e4e648d07771ce2443da34330c76df0f5dc48 (diff)
Try with uppercase "Bar"unreachable-test
-rw-r--r--src/de.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/de.rs b/src/de.rs
index 82bac8a..97db57a 100644
--- a/src/de.rs
+++ b/src/de.rs
@@ -481,7 +481,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();
@@ -492,7 +492,7 @@ mod tests {
#[test]
fn test_unreachable_reachable_not_panicing_2() {
let working_config = r#"
- e = "foo"
+ e = "Foo"
"#;
let mut c = Config::default();
@@ -505,7 +505,7 @@ mod tests {
#[should_panic]
fn test_unreachable_reachable_panicing() {
let panicing_config = r#"
- e = "bar"
+ e = "Bar"
"#;
let mut c = Config::default();