summaryrefslogtreecommitdiff
path: root/sd/qa/uitest/impress_tests2/tdf91762.py
diff options
context:
space:
mode:
Diffstat (limited to 'sd/qa/uitest/impress_tests2/tdf91762.py')
-rw-r--r--sd/qa/uitest/impress_tests2/tdf91762.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/sd/qa/uitest/impress_tests2/tdf91762.py b/sd/qa/uitest/impress_tests2/tdf91762.py
index 2b3282413e15..e36baec62094 100644
--- a/sd/qa/uitest/impress_tests2/tdf91762.py
+++ b/sd/qa/uitest/impress_tests2/tdf91762.py
@@ -25,7 +25,7 @@ class tdf91762(UITestCase):
self.assertEqual('5', get_state_as_dict(xDialog.getChild('columns'))['Text'])
self.assertEqual('2', get_state_as_dict(xDialog.getChild('rows'))['Text'])
- self.assertEqual(1929, document.DrawPages[0].getByIndex(1).BoundRect.Height)
+ self.assertEqual(1961, document.DrawPages[0].getByIndex(1).BoundRect.Height)
self.assertEqual(25198, document.DrawPages[0].getByIndex(1).Size.Width)
self.assertEqual(1923, document.DrawPages[0].getByIndex(1).Size.Height)
@@ -38,9 +38,8 @@ class tdf91762(UITestCase):
xEdit.executeAction("TYPE", mkPropertyValues({"TEXT":"test"}))
xEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "RETURN"}))
- # tdf#138011: Without the fix in place, this test would have failed with
- # AssertionError: 5504 != 3559
- self.assertEqual(5504, document.DrawPages[0].getByIndex(1).BoundRect.Height)
+ # tdf#138011: Without the fix in place, it will be much lower
+ self.assertEqual(5466, document.DrawPages[0].getByIndex(1).BoundRect.Height)
# vim: set shiftwidth=4 softtabstop=4 expandtab: