Skip to content

Commit 7574312

Browse files
committed
Adjust comment
1 parent 9912207 commit 7574312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexing/test_loc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ def test_loc_setitem_frame_with_reindex(self, using_array_manager):
597597
ser = Series([2, 3, 1], index=[3, 5, 4], dtype=float)
598598
if using_array_manager:
599599
# TODO(ArrayManager) with "split" path, we still overwrite the column
600-
# and therefore don't take the order of the indexer into account
600+
# and therefore don't take the dtype of the underlying object into account
601601
ser = Series([2, 3, 1], index=[3, 5, 4], dtype="int64")
602602
expected = DataFrame({"A": ser})
603603
tm.assert_frame_equal(df, expected)

0 commit comments

Comments
 (0)