Skip to content

Commit 9c9bb06

Browse files
topper-123victor
authored and
victor
committed
fix for pandas-dev#21224 wrong sort order (pandas-dev#22110)
1 parent 1a53600 commit 9c9bb06

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)