Skip to content

Commit f22c408

Browse files
committed
lint
1 parent 5ebd319 commit f22c408

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cook/workflow/executor_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)