From 52600ea55ccc92c11e31e88b863d05eb47720d5a Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 13 Apr 2026 09:19:15 +0200 Subject: [PATCH] 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. --- static/js/wasm-terminal.test.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/wasm-terminal.test.html b/static/js/wasm-terminal.test.html index 64c0db5dd..97404bd96 100644 --- a/static/js/wasm-terminal.test.html +++ b/static/js/wasm-terminal.test.html @@ -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";