Skip to content

Commit

Permalink
xfailed test is now fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
rhshadrach committed Apr 1, 2022
1 parent c05e582 commit 8e66efb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions pandas/tests/groupby/transform/test_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -1304,12 +1304,8 @@ def test_transform_cumcount():


@pytest.mark.parametrize("keys", [["A1"], ["A1", "A2"]])
def test_null_group_lambda_self(request, sort, dropna, keys):
def test_null_group_lambda_self(sort, dropna, keys):
# GH 17093
if not sort and not dropna:
msg = "GH#46584: null values get sorted when sort=False"
request.node.add_marker(pytest.mark.xfail(reason=msg, strict=False))

size = 50
nulls1 = np.random.choice([False, True], size)
nulls2 = np.random.choice([False, True], size)
Expand Down

0 comments on commit 8e66efb

Please sign in to comment.