()
| 426 | |
| 427 | @requires_numbagg_or_bottleneck |
| 428 | def test_ffill(): |
| 429 | da = xr.DataArray(np.array([4, 5, np.nan], dtype=np.float64), dims="x") |
| 430 | expected = xr.DataArray(np.array([4, 5, 5], dtype=np.float64), dims="x") |
| 431 | actual = da.ffill("x") |
| 432 | assert_equal(actual, expected) |
| 433 | |
| 434 | |
| 435 | @pytest.mark.parametrize("compute_backend", [None], indirect=True) |
nothing calls this directly
no test coverage detected
searching dependent graphs…