We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10d9b26 commit e064825Copy full SHA for e064825
pandas/tests/tseries/test_resample.py
@@ -1944,7 +1944,7 @@ def test_resample_nunique_with_date_gap(self):
1944
index = pd.date_range('1-1-2000', '2-15-2000', freq='h')
1945
index2 = pd.date_range('4-15-2000', '5-15-2000', freq='h')
1946
index3 = index.append(index2)
1947
- s = pd.Series(range(len(index3)), index=index3)
+ s = pd.Series(range(len(index3)), index=index3, dtype='int64')
1948
r = s.resample('M')
1949
1950
# Since all elements are unique, these should all be the same
0 commit comments