Skip to content

Commit 187eaad

Browse files
committed
GH#
1 parent 4a173fb commit 187eaad

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/reshape/merge/test_join.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -673,6 +673,7 @@ def _check_diff_index(df_list, result, exp_index):
673673

674674
@pytest.mark.parametrize("how", ["left", "right", "inner", "outer"])
675675
def test_join_many_sort_unique(self, how, sort):
676+
# https://github.com/pandas-dev/pandas/pull/62954
676677
df = DataFrame({"a": [1, 2, 3]}, index=[1, 0, 2])
677678
df2 = DataFrame({"b": [4, 5, 6]}, index=[2, 0, 1])
678679
if how == "right":
@@ -687,6 +688,7 @@ def test_join_many_sort_unique(self, how, sort):
687688

688689
@pytest.mark.parametrize("how", ["left", "right", "inner", "outer"])
689690
def test_join_many_sort_nonunique(self, how, sort):
691+
# https://github.com/pandas-dev/pandas/pull/62954
690692
df = DataFrame({"a": [1, 2, 3]}, index=[3, 0, 0])
691693
df2 = DataFrame({"b": [4, 5, 6]}, index=[2, 0, 1])
692694
if how == "inner":

0 commit comments

Comments
 (0)