Skip to content

Commit 413dad1

Browse files
committed
new
1 parent a16f5b3 commit 413dad1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/indexes/test_common.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@ def test_sort_values_invalid_na_position(index_with_missing, na_position):
446446
with pytest.raises(ValueError, match=f"invalid na_position: {na_position}"):
447447
index_with_missing.sort_values(na_position=na_position)
448448

449+
449450
@pytest.mark.filterwarnings(r"ignore:PeriodDtype\[B\] is deprecated:FutureWarning")
450451
@pytest.mark.parametrize("na_position", ["first", "last"])
451452
def test_sort_values_with_missing(index_with_missing, na_position, request):
@@ -476,7 +477,8 @@ def test_sort_values_with_missing(index_with_missing, na_position, request):
476477

477478
result = index_with_missing.sort_values(na_position=na_position)
478479
tm.assert_index_equal(result, expected)
479-
480+
481+
480482
def test_sort_values_natsort_key():
481483
# GH#56081
482484
def split_convert(s):

0 commit comments

Comments
 (0)