File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1198,7 +1198,7 @@ async fn test_shell_command_with_on_failure_retry() {
11981198
11991199 // Since fail_workflow is false and we have retries, it should not error
12001200 if let Err ( e) = & result {
1201- eprintln ! ( "Unexpected error: {}" , e ) ;
1201+ eprintln ! ( "Unexpected error: {e}" ) ;
12021202 }
12031203 assert ! ( result. is_ok( ) ) ;
12041204 let step_result = result. unwrap ( ) ;
@@ -1266,7 +1266,7 @@ async fn test_shell_command_with_on_failure_fail_workflow() {
12661266 // Should error since fail_workflow is true
12671267 assert ! ( result. is_err( ) ) ;
12681268 let err = result. unwrap_err ( ) ;
1269- eprintln ! ( "Error message: {}" , err ) ;
1269+ eprintln ! ( "Error message: {err}" ) ;
12701270 // The error message says "Test command" because shell commands with on_failure are converted to test commands
12711271 assert ! ( err
12721272 . to_string( )
You can’t perform that action at this time.
0 commit comments