Skip to content

Commit 957e8cc

Browse files
committed
fix failures
1 parent 8e7af69 commit 957e8cc

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

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

-5
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,6 @@ def test_astype(self):
4343

4444
def test_astype_uint(self):
4545
arr = date_range("2000", periods=2, name="idx")
46-
expected = Index(
47-
np.array([946684800000000000, 946771200000000000], dtype="uint64"),
48-
name="idx",
49-
)
50-
tm.assert_index_equal(arr.astype("uint64"), expected)
5146

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

0 commit comments

Comments
 (0)