Skip to content

Commit 15884f3

Browse files
Fix numpy warning (#35085)
1 parent fdaa5e4 commit 15884f3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/conftest.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,7 @@ def nselect_method(request):
256256
# ----------------------------------------------------------------
257257
# Missing values & co.
258258
# ----------------------------------------------------------------
259-
@pytest.fixture(
260-
params=[None, np.nan, pd.NaT, float("nan"), np.float("NaN"), pd.NA], ids=str
261-
)
259+
@pytest.fixture(params=[None, np.nan, pd.NaT, float("nan"), pd.NA], ids=str)
262260
def nulls_fixture(request):
263261
"""
264262
Fixture for each null type in pandas.

0 commit comments

Comments
 (0)