From 6d20e1331e2502684a72798373b347dda893fe44 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 27 Sep 2025 01:47:27 +0000 Subject: [PATCH] Fix formatting with cargo fmt Co-authored-by: imjasonh <210737+imjasonh@users.noreply.github.com> --- tests/builtin_commands.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/builtin_commands.rs b/tests/builtin_commands.rs index 9752465..1efb997 100644 --- a/tests/builtin_commands.rs +++ b/tests/builtin_commands.rs @@ -221,7 +221,11 @@ target content"#; } else { // Expected failure on Windows due to permissions let error_msg = result.unwrap_err().to_string(); - assert!(error_msg.contains("symlink"), "Error should mention symlinks: {}", error_msg); + assert!( + error_msg.contains("symlink"), + "Error should mention symlinks: {}", + error_msg + ); } }