Skip to content

Commit

Permalink
more linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed Jan 31, 2019
1 parent d234a1d commit 260aba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/indexes/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ def test_intersect_nosort(self):

def test_intersection_equal_sort(self):
idx = pd.Index(['c', 'a', 'b'])
sorted_ = pd.Index(['a', 'b', 'c'])
# sorted_ = pd.Index(['a', 'b', 'c'])
tm.assert_index_equal(idx.intersection(idx, sort=False), idx)
tm.assert_index_equal(idx.intersection(idx, sort=None), idx)
# TODO decide on True behaviour
Expand Down

0 comments on commit 260aba2

Please sign in to comment.