Skip to content

Commit 80fb7a2

Browse files
committed
Revert "Shortern more test names"
This reverts commit d3f3e5d.
1 parent 27a204f commit 80fb7a2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pygmt/tests/test_clib_to_numpy.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def test_to_numpy_numpy_numeric(dtype, expected_dtype):
128128

129129

130130
@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):
132132
"""
133133
Test the _to_numpy function with NumPy arrays of string types.
134134
"""
@@ -282,7 +282,7 @@ def test_to_numpy_pandas_numeric_with_na(dtype, expected_dtype):
282282
),
283283
],
284284
)
285-
def test_to_numpy_pandas_string(dtype):
285+
def test_to_numpy_pandas_series_pandas_dtypes_string(dtype):
286286
"""
287287
Test the _to_numpy function with pandas.Series of pandas string types.
288288
@@ -304,7 +304,7 @@ def test_to_numpy_pandas_string(dtype):
304304
pytest.param("date64[ms][pyarrow]", "datetime64[ms]", id="date64[ms]"),
305305
],
306306
)
307-
def test_to_numpy_pandas_date(dtype, expected_dtype):
307+
def test_to_numpy_pandas_series_pyarrow_dtypes_date(dtype, expected_dtype):
308308
"""
309309
Test the _to_numpy function with pandas.Series of PyArrow date32/date64 types.
310310
"""
@@ -413,7 +413,7 @@ def test_to_numpy_pyarrow_numeric_with_na(dtype, expected_dtype):
413413
"string_view",
414414
],
415415
)
416-
def test_to_numpy_pyarrow_string(dtype):
416+
def test_to_numpy_pyarrow_array_pyarrow_dtypes_string(dtype):
417417
"""
418418
Test the _to_numpy function with PyArrow arrays of PyArrow string types.
419419
"""
@@ -431,7 +431,7 @@ def test_to_numpy_pyarrow_string(dtype):
431431
pytest.param("date64[ms]", "datetime64[ms]", id="date64[ms]"),
432432
],
433433
)
434-
def test_to_numpy_pyarrow_date(dtype, expected_dtype):
434+
def test_to_numpy_pyarrow_array_pyarrow_dtypes_date(dtype, expected_dtype):
435435
"""
436436
Test the _to_numpy function with PyArrow arrays of PyArrow date types.
437437

0 commit comments

Comments
 (0)