Skip to content

Commit c1a1a39

Browse files
committed
various fixups
1 parent 78740c7 commit c1a1a39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/extension/masked_shared.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def check_reduce_with_wrap(self, ser: pd.Series, op_name: str, skipna: bool):
7070

7171
arr = ser.array
7272

73-
float32_cond = arr.dtype == "Float32" and is_platform_windows() or not IS64
73+
float32_cond = arr.dtype == "Float32" or (is_platform_windows() or not IS64)
7474
float_dtype = "Float32" if float32_cond else "Float64"
7575

7676
if op_name in ["mean", "median", "var", "std", "skew"]:

0 commit comments

Comments
 (0)