From 613bd54bb06455c3cf75f1d59a0f34ae9a9338bd Mon Sep 17 00:00:00 2001 From: Fangchen Li Date: Tue, 15 Jun 2021 23:10:06 -0500 Subject: [PATCH] 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):