@@ -128,7 +128,7 @@ def test_to_numpy_numpy_numeric(dtype, expected_dtype):
128
128
129
129
130
130
@pytest .mark .parametrize ("dtype" , [None , np .str_ , "U10" ])
131
- def test_to_numpy_numpy_string (dtype ):
131
+ def test_to_numpy_ndarray_numpy_dtypes_string (dtype ):
132
132
"""
133
133
Test the _to_numpy function with NumPy arrays of string types.
134
134
"""
@@ -282,7 +282,7 @@ def test_to_numpy_pandas_numeric_with_na(dtype, expected_dtype):
282
282
),
283
283
],
284
284
)
285
- def test_to_numpy_pandas_string (dtype ):
285
+ def test_to_numpy_pandas_series_pandas_dtypes_string (dtype ):
286
286
"""
287
287
Test the _to_numpy function with pandas.Series of pandas string types.
288
288
@@ -304,7 +304,7 @@ def test_to_numpy_pandas_string(dtype):
304
304
pytest .param ("date64[ms][pyarrow]" , "datetime64[ms]" , id = "date64[ms]" ),
305
305
],
306
306
)
307
- def test_to_numpy_pandas_date (dtype , expected_dtype ):
307
+ def test_to_numpy_pandas_series_pyarrow_dtypes_date (dtype , expected_dtype ):
308
308
"""
309
309
Test the _to_numpy function with pandas.Series of PyArrow date32/date64 types.
310
310
"""
@@ -413,7 +413,7 @@ def test_to_numpy_pyarrow_numeric_with_na(dtype, expected_dtype):
413
413
"string_view" ,
414
414
],
415
415
)
416
- def test_to_numpy_pyarrow_string (dtype ):
416
+ def test_to_numpy_pyarrow_array_pyarrow_dtypes_string (dtype ):
417
417
"""
418
418
Test the _to_numpy function with PyArrow arrays of PyArrow string types.
419
419
"""
@@ -431,7 +431,7 @@ def test_to_numpy_pyarrow_string(dtype):
431
431
pytest .param ("date64[ms]" , "datetime64[ms]" , id = "date64[ms]" ),
432
432
],
433
433
)
434
- def test_to_numpy_pyarrow_date (dtype , expected_dtype ):
434
+ def test_to_numpy_pyarrow_array_pyarrow_dtypes_date (dtype , expected_dtype ):
435
435
"""
436
436
Test the _to_numpy function with PyArrow arrays of PyArrow date types.
437
437
0 commit comments