diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-10-19 15:46:45 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-10-19 18:31:27 +0200 |
commit | 0a0c5a5b0521bea6cb695731d448e62c41ed4c57 (patch) | |
tree | 2f3038bbafeb3f22ccdb07c38b7f53603dc829fe /sc/qa/uitest | |
parent | 5d347c3d72a1d05f998f93f1e1ffea0b55457217 (diff) |
UITest_sw_navigator: avoid oneprocess
This is just a test to see whether this is reason why
UITest_sw_navigator is failing some much recently.
if it's not the case, I'll revert this patch later on
This patch reverts
- 1775b0c25ab13dab94c5ce930d45347a25198af4 "disable unreliable navigator UITest"
- f2ba17fecb60d936599efb975d96a3ea06c2a43f "disable more flakey
navigator UITest"
- 2e49ec0eaa59b5b513ea756861ecac5482b930b2 "disable more flakey
navigator UITest"
- d09785691373009a72cef14fd67610404c8d6022 "disable more flakey
navigator test"
- 6347dcbd3ab2e0a7cb2f7de3bcb5d007e8befc09 "disable more unreliable navigator UITest"
Change-Id: I6e3dde9ad412b0769edee551f7e0ee026586bf8b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158184
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sc/qa/uitest')
-rw-r--r-- | sc/qa/uitest/calc_tests8/navigator.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/qa/uitest/calc_tests8/navigator.py b/sc/qa/uitest/calc_tests8/navigator.py index ec8fa2ae9a2e..f917e6e84b30 100644 --- a/sc/qa/uitest/calc_tests8/navigator.py +++ b/sc/qa/uitest/calc_tests8/navigator.py @@ -142,8 +142,7 @@ class navigator(UITestCase): xColumn.executeAction("TYPE", mkPropertyValues({"TEXT":"B"})) xColumn.executeAction("TYPE", mkPropertyValues({"KEYCODE":"RETURN"})) xToolkit.processEventsToIdle() -# disable flakey UITest -# self.assertEqual(get_state_as_dict(xColumn)['Value'], '2') + self.assertEqual(get_state_as_dict(xColumn)['Value'], '2') xRow.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"})) xRow.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"})) |