Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ccfa77f

Browse files
committedApr 26, 2023
various fixups
1 parent cc1de44 commit ccfa77f

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)
Please sign in to comment.