Skip to content

Commit

Permalink
Fix failing test from GEOS 3.9.0; closes shapely#1079
Browse files Browse the repository at this point in the history
  • Loading branch information
mwtoews committed Feb 9, 2021
1 parent 4b03b75 commit ea5b05a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_svg.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ def test_collection(self):
self.assertSVG(GeometryCollection(), '<g />')
# Valid
self.assertSVG(
Point(7, 3).union(LineString([(4, 2), (8, 4)])),
GeometryCollection(
[Point(7, 3), LineString([(4, 2), (8, 4)])]),
'<g><circle cx="7.0" cy="3.0" r="3.0" stroke="#555555" '
'stroke-width="1.0" fill="#66cc99" opacity="0.6" />'
'<polyline fill="none" stroke="#66cc99" stroke-width="2.0" '
Expand Down

0 comments on commit ea5b05a

Please sign in to comment.