Skip to content

Commit ac68115

Browse files
authored
CI: Remove xfail for xpassing test for Python 3.8 (#42558)
1 parent de34ca3 commit ac68115

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

pandas/tests/scalar/timedelta/test_arithmetic.py

+1-11
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@
1010
import numpy as np
1111
import pytest
1212

13-
from pandas.compat import is_numpy_dev
1413
from pandas.errors import OutOfBoundsTimedelta
1514

1615
import pandas as pd
1716
from pandas import (
1817
NaT,
1918
Timedelta,
2019
Timestamp,
21-
compat,
2220
offsets,
2321
)
2422
import pandas._testing as tm
@@ -434,15 +432,7 @@ def test_td_div_numeric_scalar(self):
434432
"nan",
435433
[
436434
np.nan,
437-
pytest.param(
438-
np.float64("NaN"),
439-
marks=pytest.mark.xfail(
440-
# Works on numpy dev only in python 3.9
441-
is_numpy_dev and not compat.PY39,
442-
raises=RuntimeWarning,
443-
reason="https://github.com/pandas-dev/pandas/issues/31992",
444-
),
445-
),
435+
np.float64("NaN"),
446436
float("nan"),
447437
],
448438
)

0 commit comments

Comments
 (0)