Skip to content

Commit 6819e32

Browse files
authored
updated message for PR 611 (#621)
updated message
1 parent 7730abc commit 6819e32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_series.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1408,7 +1408,7 @@ def test_bitwise_operators() -> None:
14081408

14091409
with pytest_warns_bounded(
14101410
FutureWarning,
1411-
match="Logical ops (and, or, xor) between Pandas objects and",
1411+
match=r"Logical ops \(and, or, xor\) between Pandas objects and",
14121412
lower="2.0.99",
14131413
):
14141414
check(assert_type(s & [1, 2, 3, 4], "pd.Series[bool]"), pd.Series, np.bool_)
@@ -1454,7 +1454,7 @@ def test_logical_operators() -> None:
14541454

14551455
with pytest_warns_bounded(
14561456
FutureWarning,
1457-
match="Logical ops (and, or, xor) between Pandas objects and",
1457+
match=r"Logical ops \(and, or, xor\) between Pandas objects and",
14581458
lower="2.0.99",
14591459
):
14601460
check(

0 commit comments

Comments
 (0)