Skip to content

Commit 05baac8

Browse files
mroeschkenoatamir
authored andcommitted
CI/TST: Fix test_resample_empty_dataframe for 32 bit build (pandas-dev#48095)
* CI/TST: Fix test_resample_empty_dataframe for 32 bit build * Change to int64
1 parent 97d8904 commit 05baac8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/resample/test_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def test_resample_empty_dataframe(empty_frame_dti, freq, resample_method):
169169
expected = df.copy()
170170
else:
171171
# GH14962
172-
expected = Series([], dtype=int)
172+
expected = Series([], dtype=np.int64)
173173

174174
expected.index = _asfreq_compat(df.index, freq)
175175

0 commit comments

Comments
 (0)