summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2021-11-18 21:22:10 +0100
committerXisco Fauli <xiscofauli@libreoffice.org>2021-11-18 22:12:56 +0100
commit11800469cc7b3a40c42410be93a12e5107db0efb (patch)
tree962c1d4bb650727b66f94158fff2b84c5d84f700 /sd
parent7bcc18ac67181d10d3479b3100647aceddd86750 (diff)
uitest: sd: the redo action fails at times ...
... to add back the animation to the list in the sidebar, and thus the test fails. Remove it for now. At least the undo part of tdf#135033 is still tested Change-Id: I7dc416645db53ec3f08376d04de9be036ce53fdf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125505 Tested-by: Xisco Fauli <xiscofauli@libreoffice.org> Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sd')
-rw-r--r--sd/qa/uitest/impress_tests/tdf137637.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/sd/qa/uitest/impress_tests/tdf137637.py b/sd/qa/uitest/impress_tests/tdf137637.py
index 11e948eb654f..9b642bee5155 100644
--- a/sd/qa/uitest/impress_tests/tdf137637.py
+++ b/sd/qa/uitest/impress_tests/tdf137637.py
@@ -33,10 +33,12 @@ class Tdf137637(UITestCase):
# AttributeError: 'NoneType' object has no attribute 'getImplementationName'
self.assertEqual("com.sun.star.drawing.SvxShapeCollection", document.CurrentSelection.getImplementationName())
+ xAnimationList = xImpressDoc.getChild("custom_animation_list")
+ self.assertEqual('0', get_state_as_dict(xAnimationList)['Children'])
+
xAddBtn = xImpressDoc.getChild("add_effect")
xAddBtn.executeAction("CLICK", tuple())
- xAnimationList = xImpressDoc.getChild("custom_animation_list")
self.assertEqual('1', get_state_as_dict(xAnimationList)['Children'])
self.xUITest.executeCommand(".uno:Undo")
@@ -45,7 +47,3 @@ class Tdf137637(UITestCase):
# AssertionError: '0' != '1'
self.assertEqual('0', get_state_as_dict(xAnimationList)['Children'])
- self.xUITest.executeCommand(".uno:Redo")
-
- self.assertEqual('1', get_state_as_dict(xAnimationList)['Children'])
-