Skip to content

Commit c819578

Browse files
committed
coerce to int
1 parent c9518b9 commit c819578

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)