From abb3ead01a76093f0d48068743c6fce7dc6d57c0 Mon Sep 17 00:00:00 2001 From: James Addison <55152140+jayaddison@users.noreply.github.com> Date: Sat, 28 Sep 2024 17:23:25 +0000 Subject: [PATCH] tests: text builder: resolve an ordering conflict between two section-number-related tests (#12868) --- tests/test_builders/test_build_text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_builders/test_build_text.py b/tests/test_builders/test_build_text.py index f8f819fc899..8007ea23157 100644 --- a/tests/test_builders/test_build_text.py +++ b/tests/test_builders/test_build_text.py @@ -57,7 +57,7 @@ def test_lineblock(app): @with_text_app() def test_nonascii_title_line(app): - app.build() + app.build(force_all=True) result = (app.outdir / 'nonascii_title.txt').read_text(encoding='utf8') expect_underline = '*********' result_underline = result.splitlines()[1].strip()