(obj)
| 238 | ], |
| 239 | ) |
| 240 | def test_groupby_map_shrink_groups(obj) -> None: |
| 241 | expected = obj.isel(x=[0, 1, 3, 4]) |
| 242 | actual = obj.groupby("x").map(lambda f: f.isel(x=[0, 1])) |
| 243 | assert_identical(expected, actual) |
| 244 | |
| 245 | |
| 246 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…