Skip to content

Commit d53e6f6

Browse files
committed
coerce to int
1 parent 4a3371f commit d53e6f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pandas/tests/groupby/test_categorical.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def test_apply(ordered):
205205
assert_frame_equal(result, expected)
206206

207207
# we coerce back to ints
208-
expected = expected.astype('int64')
208+
expected = expected.astype('int')
209209
result = grouped.mean()
210210
assert_frame_equal(result, expected)
211211

0 commit comments

Comments
 (0)