diff options
Diffstat (limited to 'sci-libs/Shapely/files')
-rw-r--r-- | sci-libs/Shapely/files/Shapely-1.6.4_p2-test_operations.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sci-libs/Shapely/files/Shapely-1.6.4_p2-test_operations.patch b/sci-libs/Shapely/files/Shapely-1.6.4_p2-test_operations.patch deleted file mode 100644 index a9213a333765..000000000000 --- a/sci-libs/Shapely/files/Shapely-1.6.4_p2-test_operations.patch +++ /dev/null @@ -1,17 +0,0 @@ -Description: Mark test_operations as xfail. - # Intersection - > self.assertIsInstance(point.intersection(Point(-1, -1)), - GeometryCollection) - E AssertionError: <shapely.geometry.point.Point object at 0xffffb6e2c250> is not an instance of <class 'shapely.geometry.collection.GeometryCollection'> -Author: Bas Couwenberg <sebastic@debian.org> - ---- a/tests/test_operations.py -+++ b/tests/test_operations.py -@@ -7,6 +7,7 @@ from shapely.geos import TopologicalErro - - class OperationsTestCase(unittest.TestCase): - -+ @pytest.mark.xfail(reason="Intersection: Point is not an instance of GeometryCollection") - def test_operations(self): - point = Point(0.0, 0.0) - |