Skip to content

Commit c026845

Browse files
committed
fix test case
1 parent 3f13b30 commit c026845

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/apply/test_frame_apply.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_apply(float_frame, engine, request):
6464
@pytest.mark.parametrize("axis", [0, 1])
6565
@pytest.mark.parametrize("raw", [True, False])
6666
def test_apply_args(float_frame, axis, raw, engine, request):
67-
if engine == "numba":
67+
if engine == "numba" and raw is False:
6868
mark = pytest.mark.xfail(reason="numba engine doesn't support args")
6969
request.node.add_marker(mark)
7070
result = float_frame.apply(

0 commit comments

Comments
 (0)