Fix French arch --help test to match current translation

The coreutils-l10n translation uses the infinitive 'Afficher' rather
than 'Affiche', causing the test to fail in CI.
This commit is contained in:
Sylvestre Ledru
2026-04-13 09:19:15 +02:00
parent 7131cf384a
commit 52600ea55c
+1 -1
View File
@@ -359,7 +359,7 @@ async function runTests() {
T.locale = "fr-FR";
const frHelp = await executeCommandLine("arch --help");
assert("arch --help in French contains French text",
frHelp.includes("Affiche l'architecture de la machine"), true);
frHelp.includes("Afficher l'architecture de la machine"), true);
T.locale = "en-US";