We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cdca4f commit ec9db2dCopy full SHA for ec9db2d
pandas/tests/scalar/timedelta/test_arithmetic.py
@@ -10,7 +10,6 @@
10
import numpy as np
11
import pytest
12
13
-from pandas.compat import is_numpy_dev
14
from pandas.errors import OutOfBoundsTimedelta
15
16
import pandas as pd
@@ -433,15 +432,7 @@ def test_td_div_numeric_scalar(self):
433
432
"nan",
434
[
435
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
+ np.float64("NaN"),
445
float("nan"),
446
],
447
)
0 commit comments