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 aaacc27 commit 4fc5ca2Copy full SHA for 4fc5ca2
pandas/tests/groupby/methods/test_kurt.py
@@ -26,7 +26,7 @@ def test_groupby_kurt_equivalence():
26
27
grpwise = [grp.kurt().to_frame(i).T for i, grp in gb]
28
expected = pd.concat(grpwise, axis=0)
29
- expected.index = expected.index.astype("intp") # 32bit builds
+ expected.index = expected.index.astype("int64") # 32bit builds
30
tm.assert_frame_equal(result, expected)
31
32
0 commit comments