Skip to content

Commit 1a0e5a2

Browse files
committed
Updated comments in test
GH21220
1 parent b09ffb7 commit 1a0e5a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/reshape/merge/test_merge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1878,10 +1878,10 @@ def test_merge_series():
18781878
index=pd.MultiIndex.from_product([['a', 'b'], [1]],
18791879
names=['outer', 'inner']))
18801880

1881-
# Testing current merge behvaior is as before
1881+
# Test merge with a DataFrame and a Series 'converted-to-DataFrame' object
18821882
result = pd.merge(a, b.to_frame(), on=['outer', 'inner'])
18831883
tm.assert_frame_equal(result, expected)
18841884

1885-
# Testing changed merge behvaior is as expected
1885+
# Test merge with a DataFrame and a Series object
18861886
result = pd.merge(a, b, on=['outer', 'inner'])
18871887
tm.assert_frame_equal(result, expected)

0 commit comments

Comments
 (0)