Skip to content

Commit 59e0284

Browse files
committed
fix axis parameter
1 parent a12db6b commit 59e0284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/reshape/concat/test_concat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,6 @@ def test_concat_posargs_deprecation(all_parsers):
650650
"except for the argument 'objs' will be keyword-only"
651651
)
652652
with tm.assert_produces_warning(FutureWarning, match=msg):
653-
result = concat([df, df2], " ")
653+
result = concat([df, df2], axis=0)
654654
expected = DataFrame([[1, 2, 3], [4, 5, 6]], index=["a", "b"])
655655
tm.assert_frame_equal(result, expected)

0 commit comments

Comments
 (0)