Skip to content

Commit 8ae292c

Browse files
committed
TST: winfix on dtype comparison, xref #10124
1 parent 0e79067 commit 8ae292c

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
@@ -4479,7 +4479,7 @@ def test_filter_maintains_ordering(self):
44794479

44804480
def test_filter_multiple_timestamp(self):
44814481
# GH 10114
4482-
df = DataFrame({'A' : np.arange(5),
4482+
df = DataFrame({'A' : np.arange(5,dtype='int64'),
44834483
'B' : ['foo','bar','foo','bar','bar'],
44844484
'C' : Timestamp('20130101') })
44854485

0 commit comments

Comments
 (0)