def test_copyto_broadcast(self, xp, dtype): a = testing.shaped_arange((3, 1), xp, dtype) b = xp.empty((2, 3, 4), dtype=dtype) xp.copyto(b, a) return b