diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-07-01 19:05:27 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-07-01 19:07:10 +0200 |
| commit | 3acf156be371b968b398062c28fe7a9449745a70 (patch) | |
| tree | 94d760e6e251b5eef62d4f7c099cb8926b59b66b | |
| parent | 4a5d98ee0a8650c651a781379787efc403a90585 (diff) | |
[3.2.x] Fixed GEOSTest.test_emptyCollections() on GEOS 3.8.0.
It's a regression in GEOS 3.8.0 fixed in GEOS 3.8.1.
Backport of 863aa7541d30247e7eb7a973ff68a7d36f16dc02 from main
| -rw-r--r-- | tests/gis_tests/geos_tests/test_geos.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/gis_tests/geos_tests/test_geos.py b/tests/gis_tests/geos_tests/test_geos.py index ab809b6630..d1496a3b3e 100644 --- a/tests/gis_tests/geos_tests/test_geos.py +++ b/tests/gis_tests/geos_tests/test_geos.py @@ -1051,8 +1051,10 @@ class GEOSTest(SimpleTestCase, TestDataMixin): # Testing __getitem__ (doesn't work on Point or Polygon) if isinstance(g, Point): - with self.assertRaises(IndexError): - g.x + # IndexError is not raised in GEOS 3.8.0. + if geos_version_tuple() != (3, 8, 0): + with self.assertRaises(IndexError): + g.x elif isinstance(g, Polygon): lr = g.shell self.assertEqual('LINEARRING EMPTY', lr.wkt) |
