treefmt-check
aarch64-darwin.formatting
· build #105
· raw
1treefmt v2.5.0traversed 199 files2emitted 114 files for processing3formatted 114 files (1 changed) in 3.283s4 M packages/harvest-invoicer/tests/test_i18n.py5diff --git a/packages/harvest-invoicer/tests/test_i18n.py b/packages/harvest-invoicer/tests/test_i18n.py6index 1e106ef..e93ce6e 1006447--- a/packages/harvest-invoicer/tests/test_i18n.py8+++ b/packages/harvest-invoicer/tests/test_i18n.py9@@ -121,7 +121,9 @@ def test_html_lang_attribute_matches_invoice_language() -> None:10 def test_tax_id_label_map_localizes_per_language() -> None:11 """A per-language tax_id_label map picks the entry for the invoice language."""12 label_map = {"es": "Identificador fiscal", "en": "Tax reference"}13- es = render_html(_invoice(), _issuer(), _client(language="es", tax_id_label=label_map))14+ es = render_html(15+ _invoice(), _issuer(), _client(language="es", tax_id_label=label_map)16+ )17 assert "Identificador fiscal" in es18 assert "Tax reference" not in es19 # The Spanish override must NOT leak into an English invoice.