style: add newline to separate test cases

This commit is contained in:
Andrew Phillips
2025-05-12 16:40:23 -03:00
committed by Andrew Phillips (aider)
parent 20f455884c
commit abef0bc96e

View File

@@ -238,6 +238,7 @@ mod tests {
let output = run_sh(cmd.as_str()); let output = run_sh(cmd.as_str());
assert!(!output.status.success(), "Command succeeded when it should have failed: {} {}", cmd, output.status); assert!(!output.status.success(), "Command succeeded when it should have failed: {} {}", cmd, output.status);
// Test with no compression // Test with no compression
let cmd = format!("echo {} | {} -c none none", INPUT_A, env); let cmd = format!("echo {} | {} -c none none", INPUT_A, env);
println!("RUNNING: {}", cmd); println!("RUNNING: {}", cmd);