Skip to content

Commit ac67fb8

Browse files
FIXUP for unary union commit
1 parent e09ca66 commit ac67fb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

geopandas/tests/test_vectorized.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ def test_unary_union():
391391
geoms = [shapely.geometry.Polygon([(0, 0), (0, 1), (1, 1)]),
392392
shapely.geometry.Polygon([(0, 0), (1, 0), (1, 1)])]
393393
G = from_shapely(geoms)
394-
u = G.unary_union()
394+
u = G.unary_union
395395

396396
expected = shapely.geometry.Polygon([(0, 0), (1, 0), (1, 1), (0, 1)])
397397
assert u.equals(expected)

0 commit comments

Comments
 (0)