diff options
Diffstat (limited to 'src/config/options_test.rs')
-rw-r--r-- | src/config/options_test.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/config/options_test.rs b/src/config/options_test.rs index 7c41fce..a6063fd 100644 --- a/src/config/options_test.rs +++ b/src/config/options_test.rs @@ -1,5 +1,4 @@ use std::collections::HashMap; -use std::env; use std::time::Duration; use crate::config::*; @@ -30,7 +29,9 @@ fn all_valid_options() -> HashMap<String, String> { #[test] #[should_panic] fn err_empty_env() { - ConfigOpts::from_env(); + std::env::remove_var("DIPLONAT_PRIVATE_IP"); + std::env::remove_var("DIPLONAT_CONSUL_NODE_NAME"); + ConfigOpts::from_env().unwrap(); } #[test] @@ -71,7 +72,7 @@ fn err_from_iter_invalid_refresh_time() { let mut opts = minimal_valid_options(); opts.insert("DIPLONAT_EXPIRATION_TIME".to_string(), "60".to_string()); opts.insert("DIPLONAT_REFRESH_TIME".to_string(), "60".to_string()); - let rt_config = ConfigOpts::from_iter(opts.clone()).unwrap(); + ConfigOpts::from_iter(opts).unwrap(); } #[test] |