Skip to content

Commit 8e66efb

Browse files
committed
xfailed test is now fixed
1 parent c05e582 commit 8e66efb

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pandas/tests/groupby/transform/test_transform.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1304,12 +1304,8 @@ def test_transform_cumcount():
13041304

13051305

13061306
@pytest.mark.parametrize("keys", [["A1"], ["A1", "A2"]])
1307-
def test_null_group_lambda_self(request, sort, dropna, keys):
1307+
def test_null_group_lambda_self(sort, dropna, keys):
13081308
# GH 17093
1309-
if not sort and not dropna:
1310-
msg = "GH#46584: null values get sorted when sort=False"
1311-
request.node.add_marker(pytest.mark.xfail(reason=msg, strict=False))
1312-
13131309
size = 50
13141310
nulls1 = np.random.choice([False, True], size)
13151311
nulls2 = np.random.choice([False, True], size)

0 commit comments

Comments
 (0)