MCPcopy Create free account
hub / github.com/dask/dask / test_reshape_exceptions

Function test_reshape_exceptions

dask/array/tests/test_array_core.py:1518–1522  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1516
1517
1518def test_reshape_exceptions():
1519 x = np.random.default_rng().integers(10, size=(5,))
1520 a = from_array(x, chunks=(2,))
1521 with pytest.raises(ValueError):
1522 da.reshape(a, (100,))
1523
1524
1525def test_reshape_splat():

Callers

nothing calls this directly

Calls 3

from_arrayFunction · 0.90
reshapeMethod · 0.80
integersMethod · 0.45

Tested by

no test coverage detected