diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-03-24 17:47:02 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-03-24 18:40:02 +0100 |
commit | 87f262dadbbdc1808c5e617003d125ee8df0c501 (patch) | |
tree | d7abb243bc4e8e5bf75a446738dc06578041492a /sw/qa | |
parent | f920e86fbf3968104e1dfc0e9934e80652ed0837 (diff) |
Extend timeout for .uno:AutoCorrectDlg UITests
...which often timed out for the ASan+UBSan Jenkins build, so lets hope that it
was just an issue with a too short timeout there
Change-Id: Ie50eb1cc16e9444d1392c95ef5c6d810b9e4bd17
Reviewed-on: https://gerrit.libreoffice.org/69599
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/qa')
-rw-r--r-- | sw/qa/uitest/writer_tests5/autocorrectOptions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/qa/uitest/writer_tests5/autocorrectOptions.py b/sw/qa/uitest/writer_tests5/autocorrectOptions.py index 925cbb59b293..042694b22f68 100644 --- a/sw/qa/uitest/writer_tests5/autocorrectOptions.py +++ b/sw/qa/uitest/writer_tests5/autocorrectOptions.py @@ -8,6 +8,7 @@ from uitest.framework import UITestCase from libreoffice.uno.propertyvalue import mkPropertyValues from uitest.uihelper.common import get_state_as_dict import time +from uitest.config import MAX_WAIT from uitest.debug import sleep from uitest.uihelper.common import select_pos @@ -19,7 +20,7 @@ class autocorrectOptions(UITestCase): xWriterDoc = self.xUITest.getTopFocusWindow() xWriterEdit = xWriterDoc.getChild("writer_edit") - self.ui_test.execute_dialog_through_command(".uno:AutoCorrectDlg") + self.ui_test.execute_dialog_through_command(".uno:AutoCorrectDlg", maxWait=2*MAX_WAIT) xDialog = self.xUITest.getTopFocusWindow() xTabs = xDialog.getChild("tabcontrol") select_pos(xTabs, "0") #tab replace |