Skip to content

Commit 7854029

Browse files
Backport PR #42558: CI: Remove xfail for xpassing test (#42563)
Co-authored-by: Thomas Li <[email protected]>
1 parent 49e27dc commit 7854029

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

pandas/tests/scalar/timedelta/test_arithmetic.py

+1-10
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
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
@@ -433,15 +432,7 @@ def test_td_div_numeric_scalar(self):
433432
"nan",
434433
[
435434
np.nan,
436-
pytest.param(
437-
np.float64("NaN"),
438-
marks=pytest.mark.xfail(
439-
# Works on numpy dev only in python 3.9
440-
is_numpy_dev,
441-
raises=RuntimeWarning,
442-
reason="https://github.com/pandas-dev/pandas/issues/31992",
443-
),
444-
),
435+
np.float64("NaN"),
445436
float("nan"),
446437
],
447438
)

0 commit comments

Comments
 (0)