(self, expected_data, index)
| 130 | ], |
| 131 | ) |
| 132 | def test_setitem_dask_array(self, expected_data, index): |
| 133 | arr = Variable(("x"), da.array([1, 2, 3, 4])) |
| 134 | expected = Variable(("x"), expected_data) |
| 135 | with raise_if_dask_computes(): |
| 136 | arr[index] = 99 |
| 137 | assert_identical(arr, expected) |
| 138 | |
| 139 | def test_squeeze(self): |
| 140 | u = self.eager_var |
nothing calls this directly
no test coverage detected