From d9f0868a45ec4b6c963f7f683a699946805eda70 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 2 Jun 2025 22:57:43 +0200 Subject: [PATCH] l10n: Adjust a test, I don't think we need to full path with 'usage' --- tests/test_util_name.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_util_name.rs b/tests/test_util_name.rs index 7a8a076e8..cd0356edc 100644 --- a/tests/test_util_name.rs +++ b/tests/test_util_name.rs @@ -41,7 +41,7 @@ fn execution_phrase_double() { assert!( String::from_utf8(output.stderr) .unwrap() - .contains(&format!("Usage: {} ls", scenario.bin_path.display())) + .contains(&"Usage: ls".to_string()) ); }