We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 957e8cc commit 7902590Copy full SHA for 7902590
pandas/tests/indexes/timedeltas/methods/test_astype.py
@@ -70,8 +70,6 @@ def test_astype(self):
70
71
def test_astype_uint(self):
72
arr = timedelta_range("1H", periods=2)
73
- expected = Index(np.array([3600000000000, 90000000000000], dtype="uint64"))
74
- tm.assert_index_equal(arr.astype("uint64"), expected)
75
76
with pytest.raises(TypeError, match=r"Do obj.astype\('int64'\)"):
77
arr.astype("uint64")
0 commit comments