Skip to content

Commit b1a9ebe

Browse files
committed
Tiny fix
1 parent 4d1710f commit b1a9ebe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_strings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3103,6 +3103,6 @@ def test_method_on_bytes(self):
31033103
lhs = Series(np.array(list('abc'), 'S1').astype(object))
31043104
rhs = Series(np.array(list('def'), 'S1').astype(object))
31053105

3106-
result = lhs.str.cat(rhs, join='left')
3106+
result = lhs.str.cat(rhs)
31073107
expected = Series(np.array(['ad', 'be', 'cf'], 'S2').astype(object))
31083108
tm.assert_series_equal(result, expected)

0 commit comments

Comments
 (0)