Skip to content

Commit

Permalink
Don't split expression over multiple lines needlessly
Browse files Browse the repository at this point in the history
  • Loading branch information
DRMacIver committed Jan 15, 2018
1 parent 2495e80 commit c8562d8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/quality/test_shrink_quality.py
Expand Up @@ -91,9 +91,7 @@ def test_minimize_3_set_of_tuples():
def test_minimize_sets_of_sets():
elements = integers(1, 100)
size = 8
set_of_sets = minimal(
sets(frozensets(elements), min_size=size),
)
set_of_sets = minimal(sets(frozensets(elements), min_size=size))
assert frozenset() in set_of_sets
assert len(set_of_sets) == size
for s in set_of_sets:
Expand Down

0 comments on commit c8562d8

Please sign in to comment.