Skip to content

Commit 20c447b

Browse files
committed
Revert "Shorten a few test names"
This reverts commit f182efd.
1 parent 58fc74e commit 20c447b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pygmt/tests/test_clib_to_numpy.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def test_to_numpy_python_types(data, expected_dtype):
118118

119119

120120
@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):
122122
"""
123123
Test the _to_numpy function with NumPy arrays of NumPy numeric dtypes.
124124
@@ -257,7 +257,7 @@ def test_to_numpy_pandas_numeric(dtype, expected_dtype):
257257
pytest.param("float64[pyarrow]", np.float64, id="float64[pyarrow]", **pa_marks),
258258
],
259259
)
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):
261261
"""
262262
Test the _to_numpy function with pandas.Series of NumPy/pandas/PyArrow numeric
263263
dtypes and missing values (NA).
@@ -369,7 +369,7 @@ def test_to_numpy_pandas_series_pyarrow_dtypes_date(dtype, expected_dtype):
369369
pytest.param("float64", np.float64, id="float64"),
370370
],
371371
)
372-
def test_to_numpy_pyarrow_numeric(dtype, expected_dtype):
372+
def test_to_numpy_pyarrow_array_pyarrow_dtypes_numeric(dtype, expected_dtype):
373373
"""
374374
Test the _to_numpy function with PyArrow arrays of PyArrow numeric types.
375375
"""
@@ -400,7 +400,7 @@ def test_to_numpy_pyarrow_numeric(dtype, expected_dtype):
400400
pytest.param("float64", np.float64, id="float64"),
401401
],
402402
)
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):
404404
"""
405405
Test the _to_numpy function with PyArrow arrays of PyArrow numeric types and NA.
406406
"""

0 commit comments

Comments
 (0)