Skip to content

Commit 4c69b74

Browse files
TomAugspurgerjbrockmendel
authored andcommitted
Fix expected dtype in test_reindex_with_same_tz (pandas-dev#33969)
1 parent d09e5e1 commit 4c69b74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexes/datetimes/test_datetime.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_reindex_with_same_tz(self):
5353
expected1 = DatetimeIndex(
5454
expected_list1, dtype="datetime64[ns, UTC]", freq=None,
5555
)
56-
expected2 = np.array([0] + [-1] * 21 + [23], dtype=np.int64,)
56+
expected2 = np.array([0] + [-1] * 21 + [23], dtype=np.dtype("intp"))
5757
tm.assert_index_equal(result1, expected1)
5858
tm.assert_numpy_array_equal(result2, expected2)
5959

0 commit comments

Comments
 (0)