summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2022-03-08 12:44:49 +0100
committerLuboš Luňák <l.lunak@collabora.com>2022-05-19 06:53:04 +0200
commitfe4606e7f4b44aeebb4ba2b4840f7ac873635d02 (patch)
tree4434ddf703863ca47e5779b2a8352a58bad9644c /pyuno
parent890493c3dc058ddedf9d6629abf178f7898c7342 (diff)
change default Calc number of columns to 16384 (tdf#50916)
All tests pass now, and I've also handled all significant bugreports from tdf#133764. This commit is mainly meant to test this more in practice and collect feedback. Depending on how this turns out, there may be a backwards compatibility option or something similar, but so far I see no significant need for it. Change-Id: I1a946f4e0b51be5acf4e25dc773e7694c2b17b48 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131180 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131959 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/qa/pytests/testcollections_XCellRange.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyuno/qa/pytests/testcollections_XCellRange.py b/pyuno/qa/pytests/testcollections_XCellRange.py
index 3f610ca3485c..641482433375 100644
--- a/pyuno/qa/pytests/testcollections_XCellRange.py
+++ b/pyuno/qa/pytests/testcollections_XCellRange.py
@@ -348,7 +348,7 @@ class TestXCellRange(CollectionsTestBase):
self.assertEqual(0, rng.RangeAddress.StartRow)
self.assertEqual(0, rng.RangeAddress.StartColumn)
self.assertEqual(0, rng.RangeAddress.EndRow)
- self.assertEqual(1023, rng.RangeAddress.EndColumn)
+ self.assertEqual(16383, rng.RangeAddress.EndColumn)
spr.close(True)
@@ -369,7 +369,7 @@ class TestXCellRange(CollectionsTestBase):
self.assertEqual(0, rng.RangeAddress.StartRow)
self.assertEqual(0, rng.RangeAddress.StartColumn)
self.assertEqual(0, rng.RangeAddress.EndRow)
- self.assertEqual(1023, rng.RangeAddress.EndColumn)
+ self.assertEqual(16383, rng.RangeAddress.EndColumn)
spr.close(True)