From 152c4dac7420bff9708b02d7c7f9d3428ec464f6 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke Date: Mon, 15 Aug 2022 16:09:09 -0700 Subject: [PATCH] CI/TST: Fix test_resample_empty_dataframe for 32 bit build (#48095) * CI/TST: Fix test_resample_empty_dataframe for 32 bit build * Change to int64 --- pandas/tests/resample/test_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/resample/test_base.py b/pandas/tests/resample/test_base.py index 403eeb8db73f9..04f147ee40e62 100644 --- a/pandas/tests/resample/test_base.py +++ b/pandas/tests/resample/test_base.py @@ -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)