Skip to content

Commit 1c92fc8

Browse files
committed
precommit
1 parent 6780260 commit 1c92fc8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/tests/indexing/test_iloc.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -758,9 +758,7 @@ def test_iloc_mask(self):
758758
tm.assert_frame_equal(result, df)
759759

760760
result = df.iloc[Series([True, False, True, False, True], dtype=bool)]
761-
tm.assert_frame_equal(
762-
result, DataFrame({"a": [0, 2, 4]}, index=[0, 2, 4])
763-
)
761+
tm.assert_frame_equal(result, DataFrame({"a": [0, 2, 4]}, index=[0, 2, 4]))
764762

765763
df = DataFrame(list(range(5)), index=list("ABCDE"), columns=["a"])
766764

0 commit comments

Comments
 (0)