Skip to content
Prev Previous commit
Next Next commit
32bit build fixup
  • Loading branch information
jbrockmendel committed Sep 30, 2025
commit 98b4c7a320a6e419af3c24601e6d97e076b7d2a0
2 changes: 1 addition & 1 deletion pandas/tests/indexing/test_loc.py
Original file line number Diff line number Diff line change
Expand Up @@ -2149,7 +2149,7 @@ def test_loc_setitem_with_expansion_nonunique_index(self, index, has_ref):
assert exp_index[-1][0] == key
else:
assert exp_index[-1] == key
exp_data = np.arange(N + 1)
exp_data = np.arange(N + 1).astype(np.int64)
expected = DataFrame(exp_data, index=exp_index)

# Add new row, but no new columns
Expand Down