Skip to content

Commit 529f05d

Browse files
committed
fix(tests): resolve E501 line length issue in test_functions.py
1 parent 6124155 commit 529f05d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

python/tests/test_functions.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2399,7 +2399,10 @@ def test_regexp_replace_native(self):
23992399
def test_literal_only_expr_args_warn_deprecated(self, func, arg_name, expr):
24002400
with pytest.warns(
24012401
DeprecationWarning,
2402-
match=rf"Passing Expr for {func.__name__}\(\) argument '{arg_name}' is deprecated",
2402+
match=(
2403+
rf"Passing Expr for {func.__name__}\(\) argument "
2404+
rf"'{arg_name}' is deprecated"
2405+
),
24032406
):
24042407
result = expr()
24052408
assert result is not None

0 commit comments

Comments
 (0)