Skip to content

Commit

Permalink
update for break
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Jul 3, 2019
1 parent c9868c1 commit 7bedc4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/frame/test_sorting.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ def test_sort_index_categorical_index(self):
assert_frame_equal(result, expected)

result = df.sort_index(ascending=False)
expected = df.iloc[[3, 2, 5, 1, 0, 4]]
expected = df.iloc[[2, 3, 0, 1, 5, 4]]
assert_frame_equal(result, expected)

def test_sort_index(self):
Expand Down

0 comments on commit 7bedc4b

Please sign in to comment.