We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c7c65c commit 9ab3596Copy full SHA for 9ab3596
pandas/tests/indexes/test_numeric.py
@@ -945,8 +945,8 @@ def test_constructor(self):
945
tm.assert_index_equal(res, idx)
946
947
# https://github.com/pandas-dev/pandas/issues/29526
948
- idx = pd.UInt64Index([1, 2**63 + 1])
949
- res = pd.UInt64Index(np.array([1, 2**63 + 1], dtype="uint64"))
+ idx = UInt64Index([1, 2**63 + 1])
+ res = Index([1, 2 ** 63 + 1], dtype=np.uint64)
950
951
952
def test_get_indexer(self, index_large):
0 commit comments