(obj, transform)
| 1156 | "transform", [lambda x: x.compute(), lambda x: x.unify_chunks()] |
| 1157 | ) |
| 1158 | def test_unify_chunks_shallow_copy(obj, transform): |
| 1159 | obj = transform(obj) |
| 1160 | unified = obj.unify_chunks() |
| 1161 | assert_identical(obj, unified) |
| 1162 | # assert obj is not unified |
| 1163 | |
| 1164 | |
| 1165 | @pytest.mark.parametrize("obj", [make_da()]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…