Skip to content

Commit 550da17

Browse files
committed
fix tests after pandas-dev/pandas#62417
1 parent 857225e commit 550da17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

geopandas/tests/test_extension_array.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ def dtype():
5252

5353

5454
def make_data():
55-
a = np.empty(100, dtype=object)
56-
a[:] = [shapely.geometry.Point(i, i) for i in range(100)]
55+
a = np.empty(10, dtype=object)
56+
a[:] = [shapely.geometry.Point(i, i) for i in range(10)]
5757
ga = from_shapely(a)
5858
return ga
5959

@@ -351,7 +351,7 @@ class TestReshaping(extension_tests.BaseReshapingTests):
351351
# non-uniform
352352
pd.MultiIndex.from_tuples([("A", "a"), ("A", "b"), ("B", "b")]),
353353
# three levels, non-uniform
354-
pd.MultiIndex.from_product([("A", "B"), ("a", "b", "c"), (0, 1, 2)]),
354+
pd.MultiIndex.from_product([("A", "B"), ("a", "b"), (0, 1)]),
355355
pd.MultiIndex.from_tuples(
356356
[
357357
("A", "a", 1),

0 commit comments

Comments
 (0)