diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2021-06-30 12:09:34 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2021-06-30 15:26:57 +0200 |
commit | a564bb70ad6c19b28c553625f4781655adb80702 (patch) | |
tree | 9a4be5c7a79d29471fa1076ba6563440587b0fec /uitest/math_tests | |
parent | 95b06d3aa514ce83f82fd538d1731fc6363e4b8a (diff) |
uitest: combine create_doc_in_start_center methods
Change-Id: I59ea0d0dbd203590e7cedec51d0481c953e5172b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118155
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'uitest/math_tests')
-rw-r--r-- | uitest/math_tests/start.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/uitest/math_tests/start.py b/uitest/math_tests/start.py index 700e38c7c87d..4645dff920da 100644 --- a/uitest/math_tests/start.py +++ b/uitest/math_tests/start.py @@ -18,14 +18,14 @@ class SimpleMathTest(UITestCase): def test_start_math(self): - with self.ui_test.create_doc_in_start_center_guarded("math"): + with self.ui_test.create_doc_in_start_center("math"): xMathDoc = self.xUITest.getTopFocusWindow() def test_docking_window_listbox(self): - with self.ui_test.create_doc_in_start_center_guarded("math"): + with self.ui_test.create_doc_in_start_center("math"): xMathDoc = self.xUITest.getTopFocusWindow() @@ -38,7 +38,7 @@ class SimpleMathTest(UITestCase): def test_math_edit(self): - with self.ui_test.create_doc_in_start_center_guarded("math"): + with self.ui_test.create_doc_in_start_center("math"): xMathDoc = self.xUITest.getTopFocusWindow() @@ -48,7 +48,7 @@ class SimpleMathTest(UITestCase): def test_math_selector(self): - with self.ui_test.create_doc_in_start_center_guarded("math"): + with self.ui_test.create_doc_in_start_center("math"): xMathDoc = self.xUITest.getTopFocusWindow() @@ -60,7 +60,7 @@ class SimpleMathTest(UITestCase): @unittest.skip("on windows the f4 does not always work") def test_complete_math(self): - with self.ui_test.create_doc_in_start_center_guarded("math"): + with self.ui_test.create_doc_in_start_center("math"): xMathDoc = self.xUITest.getTopFocusWindow() |