We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13f4ec1 commit 302ae61Copy full SHA for 302ae61
pandas/tests/util/test_deprecate_nonkeyword_arguments.py
@@ -68,7 +68,7 @@ def test_three_positional_argument_with_warning_message_analysis():
68
for actual_warning in w:
69
assert actual_warning.category == FutureWarning
70
assert str(actual_warning.message) == (
71
- "After Pandas version 1.1 all arguments of g"
+ "Starting with Pandas version 1.1 all arguments of g"
72
" except for the argument 'a' will be keyword-only"
73
)
74
@@ -96,5 +96,5 @@ def test_one_positional_argument_with_warning_message_analysis():
96
97
98
99
- "After Pandas version 1.1 all arguments of h will be keyword-only"
+ "Starting with Pandas version 1.1 all arguments of h will be keyword-only"
100
0 commit comments