From 0083a583c19ddb96847728feabb8d3a71d0dc4af Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Thu, 14 Mar 2024 21:41:25 -0600 Subject: [PATCH] xfail --- xarray/tests/test_dataarray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xarray/tests/test_dataarray.py b/xarray/tests/test_dataarray.py index 2e510549cb7..04112a16ab3 100644 --- a/xarray/tests/test_dataarray.py +++ b/xarray/tests/test_dataarray.py @@ -3420,7 +3420,7 @@ def test_to_dataframe_0length(self) -> None: @requires_dask_expr @requires_dask - @pytest.mark.xfail("dask-expr is broken") + @pytest.mark.xfail(reason="dask-expr is broken") def test_to_dask_dataframe(self) -> None: arr_np = np.arange(3 * 4).reshape(3, 4) arr = DataArray(arr_np, [("B", [1, 2, 3]), ("A", list("cdef"))], name="foo")