()
| 271 | |
| 272 | @pytest.mark.skip(reason="failure detected by hypothesis") |
| 273 | def test_unstack_string(): |
| 274 | ds = xr.Dataset() |
| 275 | ds["0"] = np.array(["", "0", "\x000"], dtype="<U2") |
| 276 | ds.stack({"1": ["0"]}).unstack() |
| 277 | |
| 278 | |
| 279 | @pytest.mark.skip(reason="failure detected by hypothesis") |