sw/qa/uitest/writer_tests8/tdf145158.py | 1 + 1 file changed, 1 insertion(+)
New commits: commit acb9afc56ed1d6b4ad5650e29c09f8138f43e7c1 Author: Xisco Fauli <[email protected]> AuthorDate: Mon Jun 9 20:25:34 2025 +0200 Commit: Xisco Fauli <[email protected]> CommitDate: Tue Jun 10 11:40:23 2025 +0200 UITest_writer_tests8: use wait_until_property_is_updated in test_tdf145158 According to https://bugs.documentfoundation.org/show_bug.cgi?id=145158#c20 the issue is still reproducible after commit eb000710c54fcd6d00735bc74b0ffcc0f54c70e0 Author: Christian Lohmaier <[email protected]> Date: Sun Jun 8 21:01:47 2025 +0200 workaround timing issue in UITest_writer_tests8 test_tdf145158 Change-Id: If771cd1ab795b7ea6690ddd8f41c9d98bd13ce50 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186301 Tested-by: Jenkins Reviewed-by: Xisco Fauli <[email protected]> Tested-by: René Engelhard <[email protected]> (cherry picked from commit 7442c8463faea5a78af32972bc7283bb44eff78f) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186311 Signed-off-by: Xisco Fauli <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186321 diff --git a/sw/qa/uitest/writer_tests8/tdf145158.py b/sw/qa/uitest/writer_tests8/tdf145158.py index 50ef8575da94..41dc0f193cd1 100644 --- a/sw/qa/uitest/writer_tests8/tdf145158.py +++ b/sw/qa/uitest/writer_tests8/tdf145158.py @@ -22,6 +22,7 @@ class tdf145158(UITestCase): xFontsize = xMainWindow.getChild("fontsizecombobox") + self.ui_test.wait_until_property_is_updated(xFontsize, "Text", "12 pt") self.assertEqual("12 pt", get_state_as_dict(xFontsize)['Text']) select_by_text(xFontsize, "10.5 pt")
