sw/qa/uitest/writer_tests5/tdf167023.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 331e33ea0fbe85753a82f2dea64e4248c5338b81 Author: Xisco Fauli <xiscofa...@libreoffice.org> AuthorDate: Mon Jun 16 13:39:12 2025 +0200 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Mon Jun 16 15:48:56 2025 +0200 sw: fix assert in UItest Added in commit f2e8141fdb80611dd2c27924ece8edd56e11a332 Author: Xisco Fauli <xiscofa...@libreoffice.org> Date: Mon Jun 16 10:09:12 2025 +0200 tdf#167023, tdf#167018: sw: Add UItest Kudos to M. Kaganski for flagging it Change-Id: If4283d2fa91cb5d3d41a7871b624b83b01bed98e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186563 Tested-by: Jenkins Tested-by: Xisco Fauli <xiscofa...@libreoffice.org> Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/sw/qa/uitest/writer_tests5/tdf167023.py b/sw/qa/uitest/writer_tests5/tdf167023.py index 56b8170ac8b6..61dfd8e8ed34 100644 --- a/sw/qa/uitest/writer_tests5/tdf167023.py +++ b/sw/qa/uitest/writer_tests5/tdf167023.py @@ -32,6 +32,6 @@ class tdf167023(UITestCase): # tdf#167018: Without the fix in place, this test would have crashed here self.xUITest.executeCommand(".uno:Paste") - self.assertEqual(1, len(document.DrawPages)) + self.assertEqual(3, len(document.DrawPages[0])) # vim: set shiftwidth=4 softtabstop=4 expandtab: