From 0ca66fe5a079e9f6867dfd6e00a2f170b922a3df Mon Sep 17 00:00:00 2001 From: Joshua Shew Date: Tue, 13 Jun 2023 22:21:16 -0400 Subject: [PATCH] modified xfail test_rolling_var_numerical_issues removed exclusion of mac from xfail --- pandas/tests/window/test_rolling.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pandas/tests/window/test_rolling.py b/pandas/tests/window/test_rolling.py index 084b4b606ad5e..381272ff691fe 100644 --- a/pandas/tests/window/test_rolling.py +++ b/pandas/tests/window/test_rolling.py @@ -9,7 +9,6 @@ from pandas.compat import ( IS64, is_platform_arm, - is_platform_mac, is_platform_power, ) @@ -1189,7 +1188,7 @@ def test_rolling_sem(frame_or_series): @pytest.mark.xfail( - (is_platform_arm() and not is_platform_mac()) or is_platform_power(), + is_platform_arm() or is_platform_power(), reason="GH 38921", ) @pytest.mark.parametrize(