Skip to content

Commit

Permalink
fix for pandas-dev#21224 wrong sort order (pandas-dev#22110)
Browse files Browse the repository at this point in the history
  • Loading branch information
topper-123 authored and jreback committed Jul 29, 2018
1 parent 0b7a08b commit 415a01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def all_arithmetic_operators(request):
# use sorted as dicts in py<3.6 have random order, which xdist doesn't like
_cython_table = sorted(((key, value) for key, value in
pd.core.base.SelectionMixin._cython_table.items()),
key=lambda x: x[0].__class__.__name__)
key=lambda x: x[0].__name__)


@pytest.fixture(params=_cython_table)
Expand Down

0 comments on commit 415a01e

Please sign in to comment.