You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Long-form exists but is not given, and short-form is given.
73
-
msg=r"Short-form parameter 'U' is not recommended. Use long-form parameters 'label', with optional parameters 'text' \(\+t\) instead."
87
+
msg=rf"Short-form parameter 'U' is not recommended. {_msg_long}"
74
88
withpytest.warns(SyntaxWarning, match=msg):
75
89
assertfunc(U="abcd+tefg") == ["-Uabcd+tefg"]
76
90
77
91
# Coexistence of long-form and short-form parameters.
78
-
msg=r"Short-form parameter 'U' conflicts with long-form parameters and is not recommended. Use long-form parameters 'label', with optional parameters 'text' \(\+t\) instead."
92
+
msg=rf"Short-form parameter 'U' conflicts with long-form parameters and is not recommended. {_msg_long}"
0 commit comments