diff options
-rw-r--r-- | sc/qa/uitest/calc_tests9/tdf133629.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/uitest/calc_tests9/tdf133629.py b/sc/qa/uitest/calc_tests9/tdf133629.py index 72a0cc881831..c2dca144fd6a 100644 --- a/sc/qa/uitest/calc_tests9/tdf133629.py +++ b/sc/qa/uitest/calc_tests9/tdf133629.py @@ -22,9 +22,9 @@ class tdf133629(UITestCase): self.xUITest.executeCommand(".uno:SelectAll") - # Check selection + # Check both sheets are selected self.assertIsNotNone(getattr(document.CurrentSelection, 'Sheet1.A1:AMJ1048576')) - self.assertIsNotNone(getattr(document.CurrentSelection, 'Sheet1.A2:AMJ1048576')) + self.assertIsNotNone(getattr(document.CurrentSelection, 'Sheet2.A1:AMJ1048576')) with self.ui_test.execute_dialog_through_command(".uno:FormatCellDialog") as xDialog: xTabs = xDialog.getChild("tabcontrol") |