Skip to content

Commit

Permalink
change test to assert that name starts with 'normal'
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Jun 13, 2018
1 parent 7981e62 commit b9d8b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask/array/tests/test_random.py
Expand Up @@ -280,5 +280,5 @@ def test_create_with_auto_dimensions():
def test_names():
name = da.random.normal(0, 1, size=(1000,), chunks=(500,)).name

assert 'normal' in name
assert name.startswith('normal')
assert len(key_split(name)) < 10

0 comments on commit b9d8b78

Please sign in to comment.