Skip to content

Commit 7902590

Browse files
committed
fix failures II
1 parent 957e8cc commit 7902590

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

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

-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ def test_astype(self):
7070

7171
def test_astype_uint(self):
7272
arr = timedelta_range("1H", periods=2)
73-
expected = Index(np.array([3600000000000, 90000000000000], dtype="uint64"))
74-
tm.assert_index_equal(arr.astype("uint64"), expected)
7573

7674
with pytest.raises(TypeError, match=r"Do obj.astype\('int64'\)"):
7775
arr.astype("uint64")

0 commit comments

Comments
 (0)