Skip to content

Commit 4264e99

Browse files
committed
Merge pull request #5598 from pydata/winfix3
TST: dtype issue in test_groupby.py on windows (GH5595)
2 parents d5ef4eb + 88f22da commit 4264e99

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
@@ -323,7 +323,7 @@ def func(dataf):
323323
# GH5592
324324
# inconcistent return type
325325
df = DataFrame(dict(A = [ 'Tiger', 'Tiger', 'Tiger', 'Lamb', 'Lamb', 'Pony', 'Pony' ],
326-
B = np.arange(7)))
326+
B = Series(np.arange(7),dtype='int64')))
327327
def f(grp):
328328
return grp.iloc[0]
329329
expected = df.groupby('A').first()

0 commit comments

Comments
 (0)