Skip to content

Commit

Permalink
CI/TST: Fix test_resample_empty_dataframe for 32 bit build (#48095)
Browse files Browse the repository at this point in the history
* CI/TST: Fix test_resample_empty_dataframe for 32 bit build

* Change to int64
  • Loading branch information
mroeschke committed Aug 15, 2022
1 parent c70f9b9 commit 152c4da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/resample/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def test_resample_empty_dataframe(empty_frame_dti, freq, resample_method):
expected = df.copy()
else:
# GH14962
expected = Series([], dtype=int)
expected = Series([], dtype=np.int64)

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

Expand Down

0 comments on commit 152c4da

Please sign in to comment.