@@ -104,7 +104,7 @@ def test_to_numpy_python_types_numeric(data, expected_dtype):
104
104
105
105
106
106
@pytest .mark .parametrize (("dtype" , "expected_dtype" ), np_dtype_params )
107
- def test_to_numpy_ndarray_numpy_dtypes_numeric (dtype , expected_dtype ):
107
+ def test_to_numpy_numpy_numeric (dtype , expected_dtype ):
108
108
"""
109
109
Test the _to_numpy function with NumPy arrays of NumPy numeric dtypes.
110
110
@@ -228,7 +228,7 @@ def test_to_numpy_pandas_numeric(dtype, expected_dtype):
228
228
pytest .param ("float64[pyarrow]" , np .float64 , id = "float64[pyarrow]" , ** pa_marks ),
229
229
],
230
230
)
231
- def test_to_numpy_pandas_series_pandas_dtypes_numeric_with_na (dtype , expected_dtype ):
231
+ def test_to_numpy_pandas_numeric_with_na (dtype , expected_dtype ):
232
232
"""
233
233
Test the _to_numpy function with pandas.Series of pandas/PyArrow numeric dtypes and
234
234
missing values (NA).
@@ -279,7 +279,7 @@ def test_to_numpy_pandas_series_pandas_dtypes_numeric_with_na(dtype, expected_dt
279
279
pytest .param ("float64" , np .float64 , id = "float64" ),
280
280
],
281
281
)
282
- def test_to_numpy_pyarrow_array_pyarrow_dtypes_numeric (dtype , expected_dtype ):
282
+ def test_to_numpy_pyarrow_numeric (dtype , expected_dtype ):
283
283
"""
284
284
Test the _to_numpy function with PyArrow arrays of PyArrow numeric types.
285
285
"""
@@ -310,7 +310,7 @@ def test_to_numpy_pyarrow_array_pyarrow_dtypes_numeric(dtype, expected_dtype):
310
310
pytest .param ("float64" , np .float64 , id = "float64" ),
311
311
],
312
312
)
313
- def test_to_numpy_pyarrow_array_pyarrow_dtypes_numeric_with_na (dtype , expected_dtype ):
313
+ def test_to_numpy_pyarrow_numeric_with_na (dtype , expected_dtype ):
314
314
"""
315
315
Test the _to_numpy function with PyArrow arrays of PyArrow numeric types and NA.
316
316
"""
0 commit comments