From d2028d296d5dc6e22589df1d2600e254b13217ab Mon Sep 17 00:00:00 2001 From: Patrick Hoefler Date: Wed, 15 Feb 2023 14:23:41 +0100 Subject: [PATCH] CI: Fix windows build failures --- pandas/tests/frame/test_query_eval.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pandas/tests/frame/test_query_eval.py b/pandas/tests/frame/test_query_eval.py index 2d38e6b75ee65..7abc8e5eb92cc 100644 --- a/pandas/tests/frame/test_query_eval.py +++ b/pandas/tests/frame/test_query_eval.py @@ -3,7 +3,6 @@ import numpy as np import pytest -from pandas.compat import is_platform_windows from pandas.errors import ( NumExprClobberingError, UndefinedVariableError, @@ -1321,9 +1320,7 @@ def test_ea_dtypes_and_scalar_operation(self, any_numeric_ea_and_arrow_dtype): { "a": Series([1, 3], dtype=any_numeric_ea_and_arrow_dtype), "b": Series([2, 4], dtype=any_numeric_ea_and_arrow_dtype), - "c": Series( - [1, 1], dtype="int64" if not is_platform_windows() else "int32" - ), + "c": Series([1, 1], dtype=result["c"].dtype), } ) tm.assert_frame_equal(result, expected)