1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

l10n: Adjust a test, I don't think we need to full path with 'usage'

This commit is contained in:
Sylvestre Ledru 2025-06-02 22:57:43 +02:00
parent a7f941577f
commit d9f0868a45

View file

@ -41,7 +41,7 @@ fn execution_phrase_double() {
assert!( assert!(
String::from_utf8(output.stderr) String::from_utf8(output.stderr)
.unwrap() .unwrap()
.contains(&format!("Usage: {} ls", scenario.bin_path.display())) .contains(&"Usage: ls".to_string())
); );
} }