diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2021-10-12 23:03:32 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2021-10-13 00:20:24 +0200 |
commit | 0ad70397c0b940ca7ec0d1de98f15628aa98abec (patch) | |
tree | d104176169776c71d806708ba91b6f36e8d7a05e /sc/qa/uitest/calc_tests9 | |
parent | 9a0335e7d2e43e46959bda16daf3fbf5944a1d9a (diff) |
uitest: sc: fix assert
Change-Id: I043c9b1807fe30b24e907eee7954e5d32c170bbd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123536
Tested-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sc/qa/uitest/calc_tests9')
-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") |