summaryrefslogtreecommitdiff
path: root/sw/qa/uitest
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2021-05-04 16:32:41 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2021-05-04 18:33:43 +0200
commit4ade38b97f8c22061b612bac81f5dcd3cfb83547 (patch)
tree50f92ce4548856ffc851ab1ecce0aa9a7afb6706 /sw/qa/uitest
parent3a24211a1d49f33ca52e4fb2c927d50304f005df (diff)
tdf#141613: sw_uiwriter3: fix unittest
The original test added in sw/qa/uitest/writer_tests7/tdf46561.py doesn't fail without the fix in place. While at it, move the UItest to CppUnittest Change-Id: I254c4ed042b14adee8c702d4c047572e69040887 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115103 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sw/qa/uitest')
-rw-r--r--sw/qa/uitest/writer_tests7/tdf46561.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/sw/qa/uitest/writer_tests7/tdf46561.py b/sw/qa/uitest/writer_tests7/tdf46561.py
index 7d43ed8505eb..1c90dc3c404a 100644
--- a/sw/qa/uitest/writer_tests7/tdf46561.py
+++ b/sw/qa/uitest/writer_tests7/tdf46561.py
@@ -97,17 +97,4 @@ class tdf46561(UITestCase):
self.ui_test.close_doc()
- # Check that former crash has been fixed
- def test_tdf141613(self):
- self.ui_test.create_doc_in_start_center("writer")
-
- xWriterDoc = self.xUITest.getTopFocusWindow()
- xWriterEdit = xWriterDoc.getChild("writer_edit")
-
- xArgs = mkPropertyValues({"Text": "something"})
- self.xUITest.executeCommandWithParameters(".uno:InsertText", xArgs)
- self.xUITest.executeCommand(".uno:InsertPageHeader")
- self.xUITest.executeCommand(".uno:Undo")
- self.xUITest.executeCommand(".uno:Undo")
-
# vim: set shiftwidth=4 softtabstop=4 expandtab: