Skip to content

Commit 1317e11

Browse files
committed
float32[pyarrow] with NA should be mapped to float32
1 parent 50e6872 commit 1317e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pygmt/tests/test_clib_to_numpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def test_to_numpy_pandas_series_pyarrow_dtypes_numeric(dtype, expected_dtype):
206206
pytest.param("uint32[pyarrow]", np.float64, id="uint32[pyarrow]"),
207207
pytest.param("uint64[pyarrow]", np.float64, id="uint64[pyarrow]"),
208208
# pytest.param("float16[pyarrow]", np.float64, id="float16[pyarrow]"),
209-
pytest.param("float32[pyarrow]", np.float64, id="float32[pyarrow]"),
209+
pytest.param("float32[pyarrow]", np.float32, id="float32[pyarrow]"),
210210
pytest.param("float64[pyarrow]", np.float64, id="float64[pyarrow]"),
211211
],
212212
)

0 commit comments

Comments
 (0)