aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-shapely/skip-test-that-fails-with-python-3.8.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/py3-shapely/skip-test-that-fails-with-python-3.8.patch')
-rw-r--r--testing/py3-shapely/skip-test-that-fails-with-python-3.8.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/testing/py3-shapely/skip-test-that-fails-with-python-3.8.patch b/testing/py3-shapely/skip-test-that-fails-with-python-3.8.patch
deleted file mode 100644
index 75ba96ebf0..0000000000
--- a/testing/py3-shapely/skip-test-that-fails-with-python-3.8.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/tests/test_operations.py b/tests/test_operations.py
-index f25f06a..a58242d 100644
---- a/tests/test_operations.py
-+++ b/tests/test_operations.py
-@@ -22,8 +22,9 @@ class OperationsTestCase(unittest.TestCase):
- self.assertIsInstance(point.envelope, Point)
-
- # Intersection
-- self.assertIsInstance(point.intersection(Point(-1, -1)),
-- GeometryCollection)
-+# fails with python 3.8
-+# self.assertIsInstance(point.intersection(Point(-1, -1)),
-+# GeometryCollection)
-
- # Buffer
- self.assertIsInstance(point.buffer(10.0), Polygon)