@@ -164,9 +164,9 @@ def test_to_numpy_pandas_series_numpy_dtypes_numeric(dtype, expected_dtype):
164
164
########################################################################################
165
165
# Test the _to_numpy function with PyArrow arrays.
166
166
#
167
- # PyArrow provides the following dtypes :
167
+ # PyArrow provides the following types :
168
168
#
169
- # - Numeric dtypes :
169
+ # - Numeric types :
170
170
# - int8, int16, int32, int64
171
171
# - uint8, uint16, uint32, uint64
172
172
# - float16, float32, float64
@@ -197,7 +197,7 @@ def test_to_numpy_pandas_series_numpy_dtypes_numeric(dtype, expected_dtype):
197
197
)
198
198
def test_to_numpy_pyarrow_array_pyarrow_dtypes_numeric (dtype , expected_dtype ):
199
199
"""
200
- Test the _to_numpy function with PyArrow arrays of PyArrow numeric dtypes .
200
+ Test the _to_numpy function with PyArrow arrays of PyArrow numeric types .
201
201
"""
202
202
data = [1.0 , 2.0 , 3.0 , 4.0 , 5.0 , 6.0 ]
203
203
if dtype == "float16" : # float16 needs special handling
@@ -228,7 +228,7 @@ def test_to_numpy_pyarrow_array_pyarrow_dtypes_numeric(dtype, expected_dtype):
228
228
)
229
229
def test_to_numpy_pyarrow_array_pyarrow_dtypes_numeric_with_na (dtype , expected_dtype ):
230
230
"""
231
- Test the _to_numpy function with PyArrow arrays of PyArrow numeric dtypes and NA.
231
+ Test the _to_numpy function with PyArrow arrays of PyArrow numeric types and NA.
232
232
"""
233
233
data = [1.0 , 2.0 , None , 4.0 , 5.0 , 6.0 ]
234
234
if dtype == "float16" : # float16 needs special handling
0 commit comments