Skip to content

Commit 7b85c02

Browse files
committed
wip
1 parent 130dbf1 commit 7b85c02

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

pandas/tests/indexing/test_indexing.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -722,15 +722,6 @@ def run_tests(df, rhs, right_loc, right_iloc):
722722
# run tests with uniform dtypes
723723
run_tests(df, rhs, right_loc, right_iloc)
724724

725-
# make frames multi-type & re-run tests
726-
for frame in [df, rhs, right_loc, right_iloc]:
727-
frame["joe"] = frame["joe"].astype("float64")
728-
frame["jolie"] = frame["jolie"].map(lambda x: f"@{x}")
729-
right_iloc["joe"] = [1.0, "@-28", "@-20", "@-12", 17.0]
730-
right_iloc["jolie"] = ["@2", -26.0, -18.0, -10.0, "@18"]
731-
with tm.assert_produces_warning(FutureWarning, match="incompatible dtype"):
732-
run_tests(df, rhs, right_loc, right_iloc)
733-
734725
@pytest.mark.parametrize(
735726
"idx", [_mklbl("A", 20), np.arange(20) + 100, np.linspace(100, 150, 20)]
736727
)

0 commit comments

Comments
 (0)