Skip to content

Commit 415a01e

Browse files
topper-123jreback
authored andcommitted
fix for #21224 wrong sort order (#22110)
1 parent 0b7a08b commit 415a01e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def all_arithmetic_operators(request):
126126
# use sorted as dicts in py<3.6 have random order, which xdist doesn't like
127127
_cython_table = sorted(((key, value) for key, value in
128128
pd.core.base.SelectionMixin._cython_table.items()),
129-
key=lambda x: x[0].__class__.__name__)
129+
key=lambda x: x[0].__name__)
130130

131131

132132
@pytest.fixture(params=_cython_table)

0 commit comments

Comments
 (0)