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.
This commit is contained in:
Sylvestre Ledru
2026-04-04 23:09:59 +02:00
parent c7f75bfccb
commit c8c195ed63
+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("Afficher l'architecture de la machine"), true);
frHelp.includes("Affiche l'architecture de la machine"), true);
T.locale = "en-US";