| commit | c753c8d0951407e3f6c7388a86082e39eca3f6b5 | [log] [tgz] |
|---|---|---|
| author | Changyuan Lyu <[email protected]> | Thu Jun 29 16:59:20 2023 |
| committer | Guillaume P <[email protected]> | Thu Jun 29 17:14:45 2023 |
| tree | 3a65099e4095e789dc62c62e83a2b24772722988 | |
| parent | c0933257c769e0a74445b82b083b14070c81ce9e [diff] |
tests: fix overridable() Tested: cargo test -p structopt --test rename_all_env Signed-off-by: Changyuan Lyu <[email protected]>
diff --git a/tests/rename_all_env.rs b/tests/rename_all_env.rs index ad5776b..24cba2e 100644 --- a/tests/rename_all_env.rs +++ b/tests/rename_all_env.rs
@@ -42,5 +42,5 @@ let help = get_help::<BehaviorModel>(); assert!(help.contains("[env: be-nice=]")); - assert!(help.contains("[env: BeAgressive=]")); + assert!(help.contains("[env: BeAggressive=]")); }