@@ -100,7 +100,6 @@ fn test_kiro_cli_mcp_import_help_subcommand() -> Result<(), Box<dyn std::error::
100100 assert ! ( response. contains( "--force" ) , "Missing --force option" ) ;
101101 assert ! ( response. contains( "-v" ) && response. contains( "--verbose" ) , "Missing --verbose option" ) ;
102102 assert ! ( response. contains( "-h" ) && response. contains( "--help" ) , "Missing --help option" ) ;
103- println ! ( "✅ Found all options with descriptions" ) ;
104103
105104 println ! ( "✅ All kiro-cli mcp import --help content verified successfully" ) ;
106105
@@ -178,7 +177,6 @@ fn test_kiro_cli_mcp_status_help_subcommand() -> Result<(), Box<dyn std::error::
178177 assert ! ( response. contains( "--name" ) , "Missing --name option" ) ;
179178 assert ! ( response. contains( "-v" ) && response. contains( "--verbose" ) , "Missing --verbose option" ) ;
180179 assert ! ( response. contains( "-h" ) && response. contains( "--help" ) , "Missing --help option" ) ;
181- println ! ( "✅ Found all options with descriptions" ) ;
182180
183181 println ! ( "✅ All kiro-cli mcp status --help content verified successfully" ) ;
184182
@@ -254,7 +252,8 @@ fn test_add_and_remove_mcp_subcommand() -> Result<(), Box<dyn std::error::Error>
254252
255253 // Verify successful removal
256254 assert ! ( remove_response. contains( "Removed" ) && remove_response. contains( "'aws-documentation'" ) , "Missing removal success message" ) ;
257- println ! ( "✅ Found successful removal message" ) ;
255+
256+ println ! ( "kiro-cli mcp add and remove subcommands verified successfully" ) ;
258257
259258 Ok ( ( ) )
260259}
@@ -316,7 +315,6 @@ fn test_kiro_cli_mcp_status_subcommand() -> Result<(), Box<dyn std::error::Error
316315
317316 // Verify successful addition
318317 assert ! ( response. contains( "Added" ) && response. contains( "'aws-documentation'" ) , "Missing success message" ) ;
319- println ! ( "✅ Found successful addition message" ) ;
320318
321319 // Allow the tool execution
322320 let response = q_chat_helper:: execute_q_subcommand ( "kiro-cli" , & [ "mcp" , "status" , "--name" , "aws-documentation" ] ) ?;
@@ -344,7 +342,8 @@ fn test_kiro_cli_mcp_status_subcommand() -> Result<(), Box<dyn std::error::Error
344342
345343 // Verify successful removal
346344 assert ! ( response. contains( "Removed" ) && response. contains( "'aws-documentation'" ) , "Missing removal success message" ) ;
347- println ! ( "✅ Found successful removal message" ) ;
345+
346+ println ! ( "kiro-cli mcp status command verified successfully" ) ;
348347
349348 Ok ( ( ) )
350349}
0 commit comments