Skip to content

Commit

Permalink
utilities: restore coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
skirpichev committed Feb 23, 2023
1 parent 233a9ad commit 078bf03
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions diofant/tests/utilities/test_iterables.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,7 @@ def test_minlex():
assert minlex((1, 0, 2)) == (0, 2, 1)
assert minlex((1, 0, 2), directed=False) == (0, 1, 2)
assert minlex('aba') == 'aab'
assert minlex((0,), directed=False) == (0,)


def test_ordered():
Expand Down

0 comments on commit 078bf03

Please sign in to comment.