()
| 1868 | |
| 1869 | |
| 1870 | def test_conjugate(): |
| 1871 | # Test for https://github.com/pydata/xarray/issues/10302 |
| 1872 | z = 1j * da.arange(100) |
| 1873 | |
| 1874 | data = xr.DataArray(z, coords={"x": np.arange(100)}) |
| 1875 | |
| 1876 | conj_data = data.conjugate() |
| 1877 | assert dask.is_dask_collection(conj_data) |
| 1878 | |
| 1879 | assert_equal(conj_data, data.conj()) |
nothing calls this directly
no test coverage detected
searching dependent graphs…