File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed
pandas/tests/scalar/timedelta Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 1010import numpy as np
1111import pytest
1212
13- from pandas .compat import is_numpy_dev
1413from pandas .errors import OutOfBoundsTimedelta
1514
1615import pandas as pd
1716from pandas import (
1817 NaT ,
1918 Timedelta ,
2019 Timestamp ,
21- compat ,
2220 offsets ,
2321)
2422import 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 )
You can’t perform that action at this time.
0 commit comments