1
0
Fork 0
mirror of https://github.com/imjasonh/testscript-rs synced 2026-07-08 17:16:38 +00:00

Fix formatting with cargo fmt

Co-authored-by: imjasonh <210737+imjasonh@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-09-27 01:47:27 +00:00
parent c78f9fca9e
commit 6d20e1331e

View file

@ -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
);
}
}