From ad0956246f65ace742d657b49a4e6b6add187bbd Mon Sep 17 00:00:00 2001 From: Fangchen Li Date: Wed, 16 Jun 2021 03:13:43 -0500 Subject: [PATCH] Backport PR #42048: CI/TST: fix typo in #41982 --- pandas/tests/indexes/numeric/test_numeric.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/indexes/numeric/test_numeric.py b/pandas/tests/indexes/numeric/test_numeric.py index de75f1dffde56..9747167296be7 100644 --- a/pandas/tests/indexes/numeric/test_numeric.py +++ b/pandas/tests/indexes/numeric/test_numeric.py @@ -536,7 +536,7 @@ def test_constructor(self, dtype): tm.assert_index_equal(res, idx) @pytest.mark.xfail( - not (is_platform_arm and is_platform_mac()), + not (is_platform_arm() and is_platform_mac()), reason="https://github.com/numpy/numpy/issues/19146", ) def test_constructor_does_not_cast_to_float(self):