Fix line length warning in hint scatter test

This commit is contained in:
Jay Kamat 2018-10-13 08:55:55 -07:00
parent 97bc4fa6a2
commit 79f63b9e81
No known key found for this signature in database
GPG Key ID: 5D2E399600F4F7B5

View File

@ -88,4 +88,5 @@ def test_scattered_hints_count(win_registry, mode_manager, min_len,
assert num_chars ** (longest_hint_len - 1) < num_elements
if shortest_hint_len == longest_hint_len:
# Check that we really couldn't use any short links
assert (num_chars ** longest_hint_len) - num_elements < len(chars) - 1
assert ((num_chars ** longest_hint_len) - num_elements <
len(chars) - 1)