Skip to content

Commit 0788266

Browse files
authored
CI: Fix windows build failures (#51405)
1 parent b3bc45c commit 0788266

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pandas/tests/frame/test_query_eval.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import numpy as np
44
import pytest
55

6-
from pandas.compat import is_platform_windows
76
from pandas.errors import (
87
NumExprClobberingError,
98
UndefinedVariableError,
@@ -1321,9 +1320,7 @@ def test_ea_dtypes_and_scalar_operation(self, any_numeric_ea_and_arrow_dtype):
13211320
{
13221321
"a": Series([1, 3], dtype=any_numeric_ea_and_arrow_dtype),
13231322
"b": Series([2, 4], dtype=any_numeric_ea_and_arrow_dtype),
1324-
"c": Series(
1325-
[1, 1], dtype="int64" if not is_platform_windows() else "int32"
1326-
),
1323+
"c": Series([1, 1], dtype=result["c"].dtype),
13271324
}
13281325
)
13291326
tm.assert_frame_equal(result, expected)

0 commit comments

Comments
 (0)