Skip to content

Commit

Permalink
remove reversed list in test
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Feb 1, 2018
1 parent 9d0aa1c commit c736c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask/tests/test_order.py
Expand Up @@ -239,7 +239,7 @@ def test_gh_3055():
dsk = dict(w.__dask_graph__())
o = order(dsk)
L = [o[k] for k in w.__dask_keys__()]
assert sorted(L) == L[::-1] or sorted(L) == L
assert sorted(L) == L


def test_type_comparisions_ok(abcde):
Expand Down

0 comments on commit c736c53

Please sign in to comment.