Skip to content

Commit cd2b41d

Browse files
Update pandas/tests/frame/indexing/test_where.py
Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com>
1 parent 143139c commit cd2b41d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pandas/tests/frame/indexing/test_where.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1087,9 +1087,6 @@ def test_where_inplace_string_array_consistency():
10871087
# Test inplace
10881088
df_inplace.where(df_inplace != "", np.nan, inplace=True)
10891089

1090-
# Both should produce pd.NA, not float nan
1091-
assert isinstance(result["A"]._values[1], type(pd.NA))
1092-
assert isinstance(df_inplace["A"]._values[1], type(pd.NA))
10931090

10941091
# Results should be identical
10951092
tm.assert_frame_equal(result, df_inplace)

0 commit comments

Comments
 (0)