@@ -6,8 +6,8 @@ const PKG_NAME: &str = env!("CARGO_PKG_NAME");
6
6
7
7
#[ test]
8
8
fn command_help ( ) -> Result < ( ) , Box < dyn std:: error:: Error > > {
9
- let mut envs = HashMap :: new ( ) ;
10
- envs. insert ( "RUST_LOG" , "debug" . to_string ( ) ) ;
9
+ let envs = HashMap :: new ( ) ;
10
+ // envs.insert("RUST_LOG", "debug".to_string());
11
11
12
12
let mut cmd = command ( & envs) ;
13
13
cmd. arg ( "--help" ) ;
@@ -20,8 +20,8 @@ fn command_help() -> Result<(), Box<dyn std::error::Error>> {
20
20
21
21
#[ test]
22
22
fn command_wrong_argument_help ( ) -> Result < ( ) , Box < dyn std:: error:: Error > > {
23
- let mut envs = HashMap :: new ( ) ;
24
- envs. insert ( "RUST_LOG" , "debug" . to_string ( ) ) ;
23
+ let envs = HashMap :: new ( ) ;
24
+ // envs.insert("RUST_LOG", "debug".to_string());
25
25
26
26
let mut cmd = command ( & envs) ;
27
27
cmd. arg ( "--wrong_argument" ) ;
@@ -71,7 +71,7 @@ fn all_integration_tests() -> Result<(), Box<dyn std::error::Error>> {
71
71
config_dir. path ( ) . as_os_str ( ) . to_str ( ) . unwrap ( ) . to_string ( ) ,
72
72
) ;
73
73
envs. insert ( "TMC_LANGS_ROOT_URL" , server. url ( ) ) ;
74
- envs. insert ( "RUST_LOG" , "debug" . to_string ( ) ) ;
74
+ // envs.insert("RUST_LOG", "debug".to_string());
75
75
76
76
// logout
77
77
let mut cmd = command ( & envs) ;
0 commit comments