Skip to content

Commit 984cff5

Browse files
committed
fix: pytest
1 parent 0a841c7 commit 984cff5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/indexes/test_indexes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1531,7 +1531,7 @@ def test_array_property() -> None:
15311531
pd.Categorical,
15321532
),
15331533
pd.Categorical,
1534-
np.int64,
1534+
int,
15351535
)
15361536
check(
15371537
assert_type(pd.interval_range(0, 1).array, IntervalArray),

tests/series/test_properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def test_array_property() -> None:
6363
pd.Categorical,
6464
),
6565
pd.Categorical,
66-
np.int64,
66+
int,
6767
)
6868
check(
6969
assert_type(pd.Series(pd.interval_range(0, 1)).array, IntervalArray),

0 commit comments

Comments
 (0)