Skip to content

Commit 676c28f

Browse files
remove xfails
1 parent 289cd20 commit 676c28f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/tests/apply/test_numba.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import numpy as np
22
import pytest
33

4-
from pandas._config import using_string_dtype
5-
64
import pandas.util._test_decorators as td
75

86
import pandas as pd
@@ -20,7 +18,6 @@ def apply_axis(request):
2018
return request.param
2119

2220

23-
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
2421
def test_numba_vs_python_noop(float_frame, apply_axis):
2522
func = lambda x: x
2623
result = float_frame.apply(func, engine="numba", axis=apply_axis)
@@ -43,7 +40,6 @@ def test_numba_vs_python_string_index():
4340
)
4441

4542

46-
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
4743
def test_numba_vs_python_indexing():
4844
frame = DataFrame(
4945
{"a": [1, 2, 3], "b": [4, 5, 6], "c": [7.0, 8.0, 9.0]},

0 commit comments

Comments
 (0)