Skip to content

Commit 6ce2637

Browse files
committed
Removed comments about this issue from other tests
1 parent 9208058 commit 6ce2637

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/tests/indexes/test_multi.py

-2
Original file line numberDiff line numberDiff line change
@@ -1573,7 +1573,6 @@ def test_is_(self):
15731573
# shouldn't change
15741574
assert mi2.is_(mi)
15751575
mi4 = mi3.view()
1576-
# GH 17464 - Remove duplicate MultiIndex levels
15771576
mi4.set_levels([lrange(10), lrange(10)], inplace=True)
15781577
assert not mi4.is_(mi3)
15791578
mi5 = mi.view()
@@ -2376,7 +2375,6 @@ def test_level_setting_resets_attributes(self):
23762375
['A', 'A', 'B', 'B', 'B'], [1, 2, 1, 2, 3]
23772376
])
23782377
assert ind.is_monotonic
2379-
# GH 17464 - Remove duplicate MultiIndex levels
23802378
ind.set_levels([['A', 'B'], [1, 3, 2]], inplace=True)
23812379
# if this fails, probably didn't reset the cache correctly.
23822380
assert not ind.is_monotonic

0 commit comments

Comments
 (0)