Skip to content

Commit cd6a45b

Browse files
committed
Removed comments about this issue from other tests
1 parent cac0a19 commit cd6a45b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/tests/indexes/test_multi.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1618,10 +1618,7 @@ def test_is_(self):
16181618
# shouldn't change
16191619
assert mi2.is_(mi)
16201620
mi4 = mi3.view()
1621-
<<<<<<< HEAD
16221621

1623-
=======
1624-
>>>>>>> 529a040... Added comments changes w/ bug number
16251622
# GH 17464 - Remove duplicate MultiIndex levels
16261623
mi4.set_levels([lrange(10), lrange(10)], inplace=True)
16271624
assert not mi4.is_(mi3)
@@ -2459,8 +2456,11 @@ def test_level_setting_resets_attributes(self):
24592456
['A', 'A', 'B', 'B', 'B'], [1, 2, 1, 2, 3]
24602457
])
24612458
assert ind.is_monotonic
2459+
<<<<<<< HEAD
24622460

24632461
# GH 17464 - Remove duplicate MultiIndex levels
2462+
=======
2463+
>>>>>>> 6ce2637... Removed comments about this issue from other tests
24642464
ind.set_levels([['A', 'B'], [1, 3, 2]], inplace=True)
24652465
# if this fails, probably didn't reset the cache correctly.
24662466
assert not ind.is_monotonic

0 commit comments

Comments
 (0)