Skip to content

Commit c89f929

Browse files
mroeschkeYi Wei
authored and
Yi Wei
committed
TST: Use different re flag for PY311 deprecation (pandas-dev#52988)
1 parent 4b52854 commit c89f929

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/extension/test_arrow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2142,7 +2142,7 @@ def test_str_encode(errors, encoding, exp):
21422142
tm.assert_series_equal(result, expected)
21432143

21442144

2145-
@pytest.mark.parametrize("flags", [0, 1])
2145+
@pytest.mark.parametrize("flags", [0, 2])
21462146
def test_str_findall(flags):
21472147
ser = pd.Series(["abc", "efg", None], dtype=ArrowDtype(pa.string()))
21482148
result = ser.str.findall("b", flags=flags)

0 commit comments

Comments
 (0)