Skip to content

Commit

Permalink
TST: resample dtype issue xref pandas-dev#15418
Browse files Browse the repository at this point in the history
  • Loading branch information
jreback committed Feb 18, 2017
1 parent 10d9b26 commit e064825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/tseries/test_resample.py
Original file line number Diff line number Diff line change
Expand Up @@ -1944,7 +1944,7 @@ def test_resample_nunique_with_date_gap(self):
index = pd.date_range('1-1-2000', '2-15-2000', freq='h')
index2 = pd.date_range('4-15-2000', '5-15-2000', freq='h')
index3 = index.append(index2)
s = pd.Series(range(len(index3)), index=index3)
s = pd.Series(range(len(index3)), index=index3, dtype='int64')
r = s.resample('M')

# Since all elements are unique, these should all be the same
Expand Down

0 comments on commit e064825

Please sign in to comment.