()
| 278 | |
| 279 | @pytest.mark.skip(reason="failure detected by hypothesis") |
| 280 | def test_unstack_object(): |
| 281 | ds = xr.Dataset() |
| 282 | ds["0"] = np.array(["", "\x000"], dtype=object) |
| 283 | ds.stack({"1": ["0"]}).unstack() |
| 284 | |
| 285 | |
| 286 | @pytest.mark.skip(reason="failure detected by hypothesis") |