Skip to content

Commit f1d91b6

Browse files
committed
precommit test passed
1 parent 1466428 commit f1d91b6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/tests/indexes/test_common.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,8 @@ def test_sort_values_invalid_na_position(index_with_missing, na_position, reques
443443
if index_with_missing.inferred_type == "mixed-integer":
444444
request.applymarker(
445445
pytest.mark.xfail(
446-
reason="Mixed-integer Indexes do not support sorting with missing values"
446+
reason="Mixed-integer Indexes do not support "
447+
"sorting with missing values"
447448
)
448449
)
449450
with pytest.raises(ValueError, match=f"invalid na_position: {na_position}"):
@@ -459,7 +460,8 @@ def test_sort_values_with_missing(index_with_missing, na_position, request):
459460
if index_with_missing.inferred_type == "mixed-integer":
460461
request.applymarker(
461462
pytest.mark.xfail(
462-
reason="Mixed-integer Indexes do not support sorting with missing values"
463+
reason="Mixed-integer Indexes do not support "
464+
"sorting with missing values"
463465
)
464466
)
465467
if isinstance(index_with_missing, CategoricalIndex):

0 commit comments

Comments
 (0)