We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a173fb commit 187eaadCopy full SHA for 187eaad
pandas/tests/reshape/merge/test_join.py
@@ -673,6 +673,7 @@ def _check_diff_index(df_list, result, exp_index):
673
674
@pytest.mark.parametrize("how", ["left", "right", "inner", "outer"])
675
def test_join_many_sort_unique(self, how, sort):
676
+ # https://github.com/pandas-dev/pandas/pull/62954
677
df = DataFrame({"a": [1, 2, 3]}, index=[1, 0, 2])
678
df2 = DataFrame({"b": [4, 5, 6]}, index=[2, 0, 1])
679
if how == "right":
@@ -687,6 +688,7 @@ def test_join_many_sort_unique(self, how, sort):
687
688
689
690
def test_join_many_sort_nonunique(self, how, sort):
691
692
df = DataFrame({"a": [1, 2, 3]}, index=[3, 0, 0])
693
694
if how == "inner":
0 commit comments