sw/qa/extras/ww8export/data/i120158.doc |binary sw/qa/uitest/writer_tests4/exportToPDF.py | 5 +++-- 2 files changed, 3 insertions(+), 2 deletions(-)
New commits: commit 0cf331a01d1fa734a746306595d9d71f38ba1c5f Author: Caolán McNamara <[email protected]> AuthorDate: Sat Dec 13 15:52:30 2025 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Sat Dec 13 20:32:17 2025 +0100 This uitest depends on enabled poppler support Change-Id: Id094a869429828f9684a04506e99b69ef6316eb6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195605 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/sw/qa/uitest/writer_tests4/exportToPDF.py b/sw/qa/uitest/writer_tests4/exportToPDF.py index 5dbc136faa28..5d8ed0d91856 100644 --- a/sw/qa/uitest/writer_tests4/exportToPDF.py +++ b/sw/qa/uitest/writer_tests4/exportToPDF.py @@ -13,7 +13,7 @@ from uitest.uihelper.common import type_text from libreoffice.uno.propertyvalue import mkPropertyValues from org.libreoffice.unotest import systemPathToFileUrl from tempfile import TemporaryDirectory -import os.path +import os class exportToPDF(UITestCase): @@ -74,6 +74,7 @@ class exportToPDF(UITestCase): with self.ui_test.load_file(systemPathToFileUrl(xFilePath)) as document: - self.assertEqual("Hello World", document.DrawPages[0][0].String) + if os.getenv('ENABLE_POPPLER') == 'TRUE': + self.assertEqual("Hello World", document.DrawPages[0][0].String) # vim: set shiftwidth=4 softtabstop=4 expandtab: commit f6b849be331d54f68557392c9a41dca20fe4dc04 Author: Caolán McNamara <[email protected]> AuthorDate: Fri Dec 12 10:58:27 2025 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Sat Dec 13 20:32:08 2025 +0100 replace CJK text to get consistent fonts used Change-Id: I49c91576d031312542368f16a55f4c08630d2f89 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195595 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/sw/qa/extras/ww8export/data/i120158.doc b/sw/qa/extras/ww8export/data/i120158.doc index eef3154d81f2..fe9e76989afd 100644 Binary files a/sw/qa/extras/ww8export/data/i120158.doc and b/sw/qa/extras/ww8export/data/i120158.doc differ
