@@ -118,7 +118,7 @@ def test_to_numpy_python_types(data, expected_dtype):
118
118
119
119
120
120
@pytest .mark .parametrize (("dtype" , "expected_dtype" ), np_dtype_params )
121
- def test_to_numpy_numpy_numeric (dtype , expected_dtype ):
121
+ def test_to_numpy_ndarray_numpy_dtypes_numeric (dtype , expected_dtype ):
122
122
"""
123
123
Test the _to_numpy function with NumPy arrays of NumPy numeric dtypes.
124
124
@@ -257,7 +257,7 @@ def test_to_numpy_pandas_numeric(dtype, expected_dtype):
257
257
pytest .param ("float64[pyarrow]" , np .float64 , id = "float64[pyarrow]" , ** pa_marks ),
258
258
],
259
259
)
260
- def test_to_numpy_pandas_numeric_with_na (dtype , expected_dtype ):
260
+ def test_to_numpy_pandas_series_pandas_dtypes_numeric_with_na (dtype , expected_dtype ):
261
261
"""
262
262
Test the _to_numpy function with pandas.Series of NumPy/pandas/PyArrow numeric
263
263
dtypes and missing values (NA).
@@ -369,7 +369,7 @@ def test_to_numpy_pandas_series_pyarrow_dtypes_date(dtype, expected_dtype):
369
369
pytest .param ("float64" , np .float64 , id = "float64" ),
370
370
],
371
371
)
372
- def test_to_numpy_pyarrow_numeric (dtype , expected_dtype ):
372
+ def test_to_numpy_pyarrow_array_pyarrow_dtypes_numeric (dtype , expected_dtype ):
373
373
"""
374
374
Test the _to_numpy function with PyArrow arrays of PyArrow numeric types.
375
375
"""
@@ -400,7 +400,7 @@ def test_to_numpy_pyarrow_numeric(dtype, expected_dtype):
400
400
pytest .param ("float64" , np .float64 , id = "float64" ),
401
401
],
402
402
)
403
- def test_to_numpy_pyarrow_numeric_with_na (dtype , expected_dtype ):
403
+ def test_to_numpy_pyarrow_array_pyarrow_dtypes_numeric_with_na (dtype , expected_dtype ):
404
404
"""
405
405
Test the _to_numpy function with PyArrow arrays of PyArrow numeric types and NA.
406
406
"""
0 commit comments