We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d234a1d commit 260aba2Copy full SHA for 260aba2
pandas/tests/indexes/test_base.py
@@ -773,7 +773,7 @@ def test_intersect_nosort(self):
773
774
def test_intersection_equal_sort(self):
775
idx = pd.Index(['c', 'a', 'b'])
776
- sorted_ = pd.Index(['a', 'b', 'c'])
+ # sorted_ = pd.Index(['a', 'b', 'c'])
777
tm.assert_index_equal(idx.intersection(idx, sort=False), idx)
778
tm.assert_index_equal(idx.intersection(idx, sort=None), idx)
779
# TODO decide on True behaviour
0 commit comments