From c8c195ed635626ea30e4c69587b6cd9cf40dad7f Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 4 Apr 2026 23:09:59 +0200 Subject: [PATCH] Fix French arch --help test assertion Upstream coreutils-l10n updated the French translation of arch-about from "Afficher l'architecture de la machine" to "Affiche l'architecture de la machine", which was causing the WASM terminal 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 97404bd96..64c0db5dd 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("Afficher l'architecture de la machine"), true); + frHelp.includes("Affiche l'architecture de la machine"), true); T.locale = "en-US";