Skip to content

Commit 04ad414

Browse files
committed
fix failures III
1 parent a6416dc commit 04ad414

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexes/timedeltas/methods/test_astype.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_astype(self):
5353
)
5454
tm.assert_index_equal(result, expected)
5555

56-
result = idx.astype(int)
56+
result = idx.astype(np.int64)
5757
expected = Index(
5858
[100000000000000] + [-9223372036854775808] * 3, dtype=np.int64, name="idx"
5959
)

0 commit comments

Comments
 (0)