Skip to content

Commit c5f17ac

Browse files
committed
added GH issue reference
1 parent 46c994c commit c5f17ac

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/frame/indexing/test_insert.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ def test_insert_item_cache(self, using_array_manager):
9191
assert df.iloc[0, 0] == df[0][0]
9292

9393
def test_insert_frame(self):
94+
# GH#42403
9495
df = DataFrame({"col1": [1, 2], "col2": [3, 4]})
9596
msg = "Wrong number of items passed 2, placement implies 1"
9697
with pytest.raises(ValueError, match=msg):

0 commit comments

Comments
 (0)