Skip to content

Commit 12a8e8c

Browse files
mroeschkeim-vinicius
authored and
im-vinicius
committed
TST: Use different re flag for PY311 deprecation (pandas-dev#52988)
1 parent ac6b9a9 commit 12a8e8c

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)