Skip to content

Commit 260aba2

Browse files
more linting
1 parent d234a1d commit 260aba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexes/test_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ def test_intersect_nosort(self):
773773

774774
def test_intersection_equal_sort(self):
775775
idx = pd.Index(['c', 'a', 'b'])
776-
sorted_ = pd.Index(['a', 'b', 'c'])
776+
# sorted_ = pd.Index(['a', 'b', 'c'])
777777
tm.assert_index_equal(idx.intersection(idx, sort=False), idx)
778778
tm.assert_index_equal(idx.intersection(idx, sort=None), idx)
779779
# TODO decide on True behaviour

0 commit comments

Comments
 (0)