diff --git a/pandas/tests/extension/test_arrow.py b/pandas/tests/extension/test_arrow.py index 4caa982fa7b64..2286674b06945 100644 --- a/pandas/tests/extension/test_arrow.py +++ b/pandas/tests/extension/test_arrow.py @@ -2142,7 +2142,7 @@ def test_str_encode(errors, encoding, exp): tm.assert_series_equal(result, expected) -@pytest.mark.parametrize("flags", [0, 1]) +@pytest.mark.parametrize("flags", [0, 2]) def test_str_findall(flags): ser = pd.Series(["abc", "efg", None], dtype=ArrowDtype(pa.string())) result = ser.str.findall("b", flags=flags)