Skip to content

Commit 255e82a

Browse files
committed
TST: fix groupby test on windows (related GH7580)
1 parent aad1c47 commit 255e82a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_groupby.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def test_nth(self):
284284

285285
# GH 7559
286286
# from the vbench
287-
df = DataFrame(np.random.randint(1, 10, (100, 2)))
287+
df = DataFrame(np.random.randint(1, 10, (100, 2)),dtype='int64')
288288
s = df[1]
289289
g = df[0]
290290
expected = s.groupby(g).first()

0 commit comments

Comments
 (0)