Skip to content

Commit

Permalink
CLN: Deprecate non-keyword arguments in concat pandas-dev#41485
Browse files Browse the repository at this point in the history
  • Loading branch information
tegardp committed May 29, 2021
1 parent 717fd39 commit 768c521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/reshape/concat/test_concat.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ def test_concat_posargs_deprecation(all_parsers):
"except for the argument 'objs' will be keyword-only"
)
with tm.assert_produces_warning(FutureWarning, match=msg):
concat([df, df2], " ")
result = concat([df, df2], " ")
expected = DataFrame([[1,2,3],[4,5,6]], index=["a","b"])
tm.assert_frame_equal(result, expected)

Expand Down

0 comments on commit 768c521

Please sign in to comment.