summaryrefslogtreecommitdiff
path: root/pyuno/qa/pytests/testcollections_XCellRange.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno/qa/pytests/testcollections_XCellRange.py')
-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 6ab827ab3346..6ace0b11cba0 100644
--- a/pyuno/qa/pytests/testcollections_XCellRange.py
+++ b/pyuno/qa/pytests/testcollections_XCellRange.py
@@ -230,9 +230,9 @@ class TestXCellRange(CollectionsTestBase):
# When / Then
with self.assertRaises(KeyError):
- rng = sht[1:1, 3:5]
+ _ = sht[1:1, 3:5]
with self.assertRaises(KeyError):
- rng = sht[1:3, 3:3]
+ _ = sht[1:3, 3:3]
spr.close(True)