Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update pandas/tests/copy_view/test_interp_fillna.py
Co-authored-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
  • Loading branch information
phofl and jorisvandenbossche authored Feb 10, 2023
commit 64b40cea80f470408fe809a7783f46ffc4308c71
2 changes: 1 addition & 1 deletion pandas/tests/copy_view/test_interp_fillna.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def test_interpolate_object_convert_no_op(using_copy_on_write):
arr_a = get_array(df, "a")
df.interpolate(method="pad", inplace=True)

# No CoW makes a copy, it should not!
# Now CoW makes a copy, it should not!
if using_copy_on_write:
assert df._mgr._has_no_reference(0)
assert np.shares_memory(arr_a, get_array(df, "a"))
Expand Down