Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed May 24, 2018
1 parent 1f7ee74 commit 67c82f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dask/array/tests/test_rechunk.py
Expand Up @@ -604,8 +604,8 @@ def test_rechunk_avoid_needless_chunking():
y = x.rechunk(8)
dsk = y.__dask_graph__()
assert len(dsk) <= 8 + 2


@pytest.mark.parametrize('shape,chunks,bs,expected', [
(100, 1, 10, (10,) * 10),
(100, 50, 10, (10,) * 10),
Expand Down Expand Up @@ -687,4 +687,4 @@ def test_rechunk_zero():
with dask.config.set({'array.chunk-size': '1B'}):
x = da.ones(10, chunks=(5,))
y = x.rechunk('auto')
assert y.chunks == ((1,) * 10,)
assert y.chunks == ((1,) * 10,)

0 comments on commit 67c82f1

Please sign in to comment.