File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -70,7 +70,9 @@ pub fn handle_destroy_command(
7070 report_error ( progress. output ( ) , & error) ;
7171 error
7272 } ) ?;
73- progress. complete_step ( Some ( & format ! ( "Environment name validated: {environment_name}" ) ) ) ;
73+ progress. complete_step ( Some ( & format ! (
74+ "Environment name validated: {environment_name}"
75+ ) ) ) ;
7476
7577 // Step 2: Initialize dependencies
7678 progress. start_step ( "Initializing dependencies" ) ;
Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ impl ProgressReporter {
248248
249249 /// Get a mutable reference to the underlying `UserOutput`
250250 ///
251- /// This allows using other output methods (like `error`, `warn`)
251+ /// This allows using other output methods (like `error`, `warn`)
252252 /// while progress is being tracked.
253253 ///
254254 /// # Examples
@@ -304,11 +304,7 @@ mod tests {
304304 #[ allow( clippy:: type_complexity) ]
305305 fn create_test_user_output (
306306 verbosity : VerbosityLevel ,
307- ) -> (
308- UserOutput ,
309- Arc < Mutex < Vec < u8 > > > ,
310- Arc < Mutex < Vec < u8 > > > ,
311- ) {
307+ ) -> ( UserOutput , Arc < Mutex < Vec < u8 > > > , Arc < Mutex < Vec < u8 > > > ) {
312308 let stdout_buffer = Arc :: new ( Mutex :: new ( Vec :: new ( ) ) ) ;
313309 let stderr_buffer = Arc :: new ( Mutex :: new ( Vec :: new ( ) ) ) ;
314310
You can’t perform that action at this time.
0 commit comments