style: format code for better readability in tests and function signatures
Some checks failed
CI / test (push) Failing after 4m59s
CI / clippy (push) Failing after 4m58s
CI / fmt (push) Successful in 23s

This commit is contained in:
2026-03-18 13:59:53 +01:00
parent 3d2bd5f9fe
commit 2e773cdeaf
4 changed files with 23 additions and 18 deletions

View File

@@ -167,10 +167,7 @@ mod tests {
#[test]
fn split_quoted_path() {
assert_eq!(
shell_split(r#""My App" --flag"#),
vec!["My App", "--flag"]
);
assert_eq!(shell_split(r#""My App" --flag"#), vec!["My App", "--flag"]);
}
#[test]