1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

fix: cargo fmt + fix spelling mistake

This commit is contained in:
Dorian Péron 2024-01-05 13:51:28 +01:00
parent c58575edaa
commit 4372908e84

View file

@ -2648,7 +2648,7 @@ fn test_ls_quoting_style_arg_overrides_env_var() {
at.touch(at.plus_as_string("bar-2")); at.touch(at.plus_as_string("bar-2"));
// The quoting style given by the env variable should be // The quoting style given by the env variable should be
// overriden by any escape style provided by argument. // overridden by any escape style provided by argument.
for (arg, correct) in [ for (arg, correct) in [
("--quoting-style=literal", "foo-1"), ("--quoting-style=literal", "foo-1"),
("-N", "foo-1"), ("-N", "foo-1"),
@ -2684,7 +2684,6 @@ fn test_ls_quoting_style_arg_overrides_env_var() {
.succeeds() .succeeds()
.stdout_only(format!("{correct}\n")); .stdout_only(format!("{correct}\n"));
} }
} }
#[test] #[test]