You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
r#"failed to parse challenge config "foo/test/challenge.yaml": data did not match any variant of untagged enum ProvideConfig for key "default.provide.0" in foo/test/challenge.yaml YAML file"#
418
+
);
358
419
359
420
Ok(())
360
421
})
@@ -649,7 +710,12 @@ fn challenge_pod_bad_env() {
649
710
let chals = parse_all();
650
711
assert!(chals.is_err());
651
712
let errs = chals.unwrap_err();
713
+
652
714
assert_eq!(errs.len(),1);
715
+
assert_eq!(
716
+
format!("{:#}", errs[0]),
717
+
r#"failed to parse challenge config "foo/test/challenge.yaml": could not parse envvar=value from "FOO" (missing '='?)"#
0 commit comments