File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ def test_three_positional_argument_with_warning_message_analysis():
68
68
for actual_warning in w :
69
69
assert actual_warning .category == FutureWarning
70
70
assert str (actual_warning .message ) == (
71
- "After Pandas version 1.1 all arguments of g"
71
+ "Starting with Pandas version 1.1 all arguments of g"
72
72
" except for the argument 'a' will be keyword-only"
73
73
)
74
74
@@ -96,5 +96,5 @@ def test_one_positional_argument_with_warning_message_analysis():
96
96
for actual_warning in w :
97
97
assert actual_warning .category == FutureWarning
98
98
assert str (actual_warning .message ) == (
99
- "After Pandas version 1.1 all arguments of h will be keyword-only"
99
+ "Starting with Pandas version 1.1 all arguments of h will be keyword-only"
100
100
)
You can’t perform that action at this time.
0 commit comments